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.
Arguments
- ...
Additional arguments passed to
pr_get_trips(), which passes them topr_add_Bioregions(). Currently supports:near_dist_km- Distance in kilometres to pad bioregion boundaries
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)
} # }