
Calculate treeloss statistics
Source:R/calc_treecover_area_and_emissions.R
treecover_area_and_emissions.Rd
This functions allows to efficiently calculate the treecover and emissions indicators in a single function call together. Since most of the pre-processing operations for treecover and emissions are the same, it is more efficient to calculate them in one run if users are actually interested in both statistics. Otherwise users are advised to use the respective single indicator functions.
Value
A function that returns an indicator tibble with variables treecover and emissions and corresponding values (in ha and Mg) as value.
Examples
# \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-2024-v1.12"),
get_gfw_lossyear(version = "GFC-2024-v1.12"),
get_gfw_emissions()
) %>%
calc_indicators(
calc_treecover_area_and_emissions(years = 2016:2017, min_size = 1, min_cover = 30)
) %>%
portfolio_long()
#> Resource 'gfw_treecover' is already available.
#> Resource 'gfw_lossyear' is already available.
#> Warning: Error in df[[what]][index] <- as.numeric(my_sum) :
#> NAs are not allowed in subscripted assignments
#> Warning: All indicator columns contained 'NULL'.
aoi
#> Simple feature collection with 1 feature and 3 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: 1 × 4
#> WDPAID ISO3 assetid geom
#> <dbl> <chr> <int> <POLYGON [°]>
#> 1 478140 DOM 1 ((-71.76134 18.66333, -71.76067 18.66267, -71.75932 18.6…
# }