mangroves_area {mapme.biodiversity}R Documentation

Calculate mangrove extent based on Global Mangrove Watch (GMW)

Description

This function allows to efficiently calculate area of mangrove from Global Mangrove Watch - World Conservation Monitoring Centre (WCMC) for polygons. For each polygon, the area of the mangrove (in hectare) for desired year is returned.

Usage

calc_mangroves_area()

Details

The required resources for this indicator are:

Value

A function that returns an indicator tibble with mangroves as variable and corresponding areas (in ha) as value.

Examples


## Not run: 
library(sf)
library(mapme.biodiversity)

outdir <- file.path(tempdir(), "mapme-data")
dir.create(outdir, showWarnings = FALSE)

mapme_options(
  outdir = outdir,
  verbose = FALSE
)

aoi <- system.file("extdata", "shell_beach_protected_area_41057_B.gpkg",
  package = "mapme.biodiversity"
) %>%
  read_sf() %>%
  get_resources(get_gmw(years = c(1996, 2016))) %>%
  calc_indicators(calc_mangroves_area()) %>%
  portfolio_long()

aoi

## End(Not run)

[Package mapme.biodiversity version 0.8.0 Index]