Skip to contents

This function allows to efficiently calculate maximum 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:

Format

A tibble with a column for maximum temperature statistics (in °C)

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_max_temperature") %>%
  calc_indicators("temperature_max_wc",
    stats_worldclim = c("mean", "median"),
    engine = "extract"
  ) %>%
  tidyr::unnest(temperature_max_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 tmax_mean tmax_median date      
#>     <dbl> <chr>         <chr>     <chr>   <int>     <dbl>       <dbl> <date>    
#>  1 478140 Sierra de Ne… National… DOM         1      20.8        20.6 2018-01-01
#>  2 478140 Sierra de Ne… National… DOM         1      20.5        20.3 2018-02-01
#>  3 478140 Sierra de Ne… National… DOM         1      22.1        22.0 2018-03-01
#>  4 478140 Sierra de Ne… National… DOM         1      22.5        22.4 2018-04-01
#>  5 478140 Sierra de Ne… National… DOM         1      21.4        21.3 2018-05-01
#>  6 478140 Sierra de Ne… National… DOM         1      22.7        22.7 2018-06-01
#>  7 478140 Sierra de Ne… National… DOM         1      23.1        23.1 2018-07-01
#>  8 478140 Sierra de Ne… National… DOM         1      23.8        23.7 2018-08-01
#>  9 478140 Sierra de Ne… National… DOM         1      23.1        23.0 2018-09-01
#> 10 478140 Sierra de Ne… National… DOM         1      22.4        22.3 2018-10-01
#> 11 478140 Sierra de Ne… National… DOM         1      22.1        21.9 2018-11-01
#> 12 478140 Sierra de Ne… National… DOM         1      21.3        21.2 2018-12-01
#> # ℹ 1 more variable: geom <POLYGON [°]>