pr_get_Stations() was deprecated in planktonr 0.7.0. Station information
is now available through pr_get_info() with Source = "NRS" or
Source = "SOTS".
pr_get_Stations(Survey = "NRS")A dataframe with station information
pr_get_info() for the preferred interface
if (FALSE) { # \dontrun{
# Instead of:
dat <- pr_get_Stations('NRS')
# Use:
dat <- pr_get_info(Source = "NRS")
} # }