precipitation_chelsa | R Documentation |
This functions allows to calculate averaged precipitation from the CHELSA downscaled precipitation layers. Based on user-selected years, monthly averages of precipitation are calculated.
calc_precipitation_chelsa(years = 1979:2018, engine = "extract")
years |
A numeric vector indicating the years for which to calculate precipitation statistics. |
engine |
The preferred processing functions from either one of "zonal", "extract" or "exactextract" as character. |
The required resources for this indicator are:
chelsa
A function that returns an indicator tibble with variable precipitation and sum of precipitation (in mm/m^2) as value.
## 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", "sierra_de_neiba_478140_2.gpkg",
package = "mapme.biodiversity"
) %>%
read_sf() %>%
get_resources(get_chelsa(years = 2010)) %>%
calc_indicators(
calc_precipitation_chelsa(
years = 2010,
engine = "extract"
)
) %>%
portfolio_long()
aoi
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.