[Deprecated]

pr_get_CPRTrips() was deprecated in planktonr 0.7.0 in favour of pr_get_trips() which provides a unified interface for both NRS and CPR trip metadata.

pr_get_CPRTrips(...)

Arguments

...

Additional arguments passed to pr_get_trips(), which passes them to pr_add_Bioregions(). Currently supports:

  • near_dist_km - Distance in kilometres to pad bioregion boundaries

Value

A dataframe with CPR trip information.

See also

pr_get_trips() for the preferred interface

Examples

if (FALSE) { # \dontrun{
# Instead of:
dat <- pr_get_CPRTrips()

# Use:
dat <- pr_get_trips(Survey = "CPR")

# With bioregion padding:
dat <- pr_get_trips(Survey = "CPR", near_dist_km = 250)
} # }