[Deprecated]

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")

Arguments

Survey

Survey type: "NRS" or "SOTS"

Value

A dataframe with station information

See also

pr_get_info() for the preferred interface

Examples

if (FALSE) { # \dontrun{
# Instead of:
dat <- pr_get_Stations('NRS')

# Use:
dat <- pr_get_info(Source = "NRS")
} # }