Skip to contents

This functions allows to efficiently calculate treecover statistics for polygons. For each year in the analysis timeframe, the forest losses in preceding and the current years are subtracted from the treecover in the year 2000 and actual treecover figures within the polygon are returned.

Usage

calc_treecover_area(years = 2000:2020, min_size = 10, min_cover = 35)

Arguments

years

A numeric vector with the years for which to calculate treecover area.

min_size

The minimum size of a forest patch to be considered as forest in ha.

min_cover

The minimum cover percentage per pixel to be considered as forest.

Value

A function that returns a tibble with a column for years and treecover (in ha).

Details

The required resources for this indicator are:

Examples

# \dontshow{
mapme.biodiversity:::.copy_resource_dir(file.path(tempdir(), "mapme-data"))
# }
# \dontrun{
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", "sierra_de_neiba_478140_2.gpkg",
  package = "mapme.biodiversity"
) %>%
  read_sf() %>%
  get_resources(
    get_gfw_treecover(version = "GFC-2022-v1.10"),
    get_gfw_lossyear(version = "GFC-2022-v1.10")
  ) %>%
  calc_indicators(calc_treecover_area(years = 2016:2017, min_size = 1, min_cover = 30)) %>%
  tidyr::unnest(treecover_area)

aoi
#> Simple feature collection with 2 features and 7 fields
#> Geometry type: POLYGON
#> Dimension:     XY
#> Bounding box:  xmin: -71.80933 ymin: 18.57668 xmax: -71.33201 ymax: 18.69931
#> Geodetic CRS:  WGS 84
#> # A tibble: 2 × 8
#>   WDPAID NAME  DESIG_ENG ISO3  assetid years treecover                      geom
#>    <dbl> <chr> <chr>     <chr>   <int> <int>     <dbl>             <POLYGON [°]>
#> 1 478140 Sier… National… DOM         1  2016    11942. ((-71.76134 18.66333, -7…
#> 2 478140 Sier… National… DOM         1  2017    11871. ((-71.76134 18.66333, -7…
# }