Description Usage Arguments Value Examples
Ensure that a set of OBIS observations actually fall within a set of MPAs
1 2 3 4 5 | obis_strict_match(
obs = read_obis("Cuba"),
mpa = read_mpa("Cuba"),
form = c("tibble", "sf", "index")[1]
)
|
obs |
tibble of OBIS observations |
mpa |
sf MULTIPOLYGON object of MPAs form WDPA |
form |
character one of
|
tibble of obs with possibly fewer rows
1 2 3 4 5 6 7 8 9 10 | ## Not run:
mpa = read_mpa("Belgium")
obs = read_obis("Belgium")
obs_strict <- obis_strict_match(obs, mpa)
dim(obs)
# [1] 511490 161
dim(obs_strict)
# [1] 480302 161
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.