knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

To get a list of our geographical regions with associated ids, use listregions().
A list of our geography options:
eez - Exclusive Economic Zone
highseas - High Seas
fao - FAO Statistical areas
lme - Large marine ecosystem
rfmo - Regional fisheries management organization
meow - Marine ecoregions of the world

listregions() can also be used to get ids for:
fishing-entity - Fishing entity (note the column 'id' is the fishing entity id. 'country id' is the geo entity)
geo-entity - additional information about countries but not a filter used in the catch data
taxa - list of our taxa and taxon keys

library(seaaroundus)
head(listregions('eez'))

Catch and Value data

To obtain our catch and landed value data, use catchdata(<region>, <id>).

Accepted regions are: eez
lme
rfmo
meow

library(seaaroundus)
df <- catchdata('eez', 8)
head(df)


SeaAroundUs/rseaaroundus documentation built on Feb. 29, 2020, 2:10 a.m.