fishing.zone.default | R Documentation |
Returns a fishing zone given a set of of coordinates.
## Default S3 method:
fishing.zone(longitude, latitude, species, ...)
longitude |
Numerical vector of longitudes in decimal degree format. |
latitude |
Numerical vector of latitudes in decimal degree format. |
species |
Numerical scalar containing a species code. |
region |
Character value specifying the geographic region. This argument is passed onto the |
fishing.zone(default)
: Returns a fishing zone for a set of coordinate points.
# Find the fishing.zone at a single point:
fishing.zone(-63.8, 47.05, species = 2526)
# Find strata values for multiple points:
lat <- c(48, 47, 46.5)
long <- c(-64, -61.5, -62)
fishing.zone(long, lat, species = 2526)
x <- read.scsset(2020)
fishing.zone(lon(x), lat(x), species = 2526) # Read snow crab set card for 2013 and determine fishing zone:
fishing.zone(lon(x), lat(x), species = 2550) # Lobster fishing areas of snow crab survey tows.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.