
Calculate minimum temperature statistics based on WorldClim
Source:R/calc_temperature_min_wc.R
temperature_min_wc.Rd
This function allows to efficiently calculate minimum temperature statistics from Worldclim for polygons. For each polygon, the desired statistic/s (min, max, sum, mean, median, sd or var) is/are returned. The required resources for this indicator are:
minimum temperature layer from worldclim
Details
The following arguments can be set:
- stats_worldclim
Function to be applied to compute statistics for polygons either one or multiple inputs as character. Supported statistics are: "mean", "median", "sd", "min", "max", "sum" "var".
- engine
The preferred processing functions from either one of "zonal", "extract" or "exactextract" as character.
Examples
library(sf)
library(mapme.biodiversity)
temp_loc <- file.path(tempdir(), "mapme.biodiversity")
if (!file.exists(temp_loc)) {
dir.create(temp_loc)
resource_dir <- system.file("res", package = "mapme.biodiversity")
file.copy(resource_dir, temp_loc, recursive = TRUE)
}
(try(aoi <- system.file("extdata", "sierra_de_neiba_478140_2.gpkg",
package = "mapme.biodiversity"
) %>%
read_sf() %>%
init_portfolio(
years = 2018,
outdir = file.path(temp_loc, "res"),
tmpdir = tempdir(),
add_resources = FALSE,
verbose = FALSE
) %>%
get_resources("worldclim_min_temperature") %>%
calc_indicators("temperature_min_wc",
stats_worldclim = c("mean", "median"),
engine = "extract"
) %>%
tidyr::unnest(temperature_min_wc)))
#> Simple feature collection with 12 features and 8 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: 12 × 9
#> WDPAID NAME DESIG_ENG ISO3 assetid tmin_mean tmin_median date
#> <dbl> <chr> <chr> <chr> <int> <dbl> <dbl> <date>
#> 1 478140 Sierra de Ne… National… DOM 1 9.96 9.85 2018-01-01
#> 2 478140 Sierra de Ne… National… DOM 1 10.2 10.1 2018-02-01
#> 3 478140 Sierra de Ne… National… DOM 1 10.1 10.0 2018-03-01
#> 4 478140 Sierra de Ne… National… DOM 1 11.0 11.0 2018-04-01
#> 5 478140 Sierra de Ne… National… DOM 1 12.6 12.5 2018-05-01
#> 6 478140 Sierra de Ne… National… DOM 1 14.0 13.9 2018-06-01
#> 7 478140 Sierra de Ne… National… DOM 1 13.0 13.0 2018-07-01
#> 8 478140 Sierra de Ne… National… DOM 1 14.0 14.0 2018-08-01
#> 9 478140 Sierra de Ne… National… DOM 1 13.6 13.6 2018-09-01
#> 10 478140 Sierra de Ne… National… DOM 1 13.2 13.1 2018-10-01
#> 11 478140 Sierra de Ne… National… DOM 1 12.5 12.4 2018-11-01
#> 12 478140 Sierra de Ne… National… DOM 1 10.3 10.2 2018-12-01
#> # ℹ 1 more variable: geom <POLYGON [°]>