Read WorldClim bioclimatic variables from Google Earth Engine
Source:R/read_worldclim.R
read_worldclim.RdReads WorldClim V2 bioclimatic variables (WORLDCLIM/V2/BIO) from Google Earth Engine. This is a static dataset representing 1970-2000 climate normals at ~1 km resolution.
Usage
read_worldclim(
region,
variable = "bio01",
backend = c("rest", "rgee"),
cache = TRUE,
max_tries = 3L,
initial_delay = 1
)Arguments
- region
An sf::sf,
sf::st_sfc(), orterra::ext()object defining the spatial extent. Required.- variable
Character. Bioclimatic variable band name. One of
"bio01"through"bio19". Default"bio01"(annual mean temperature, degrees C x 10).- backend
Character.
"rest"(default) or"rgee".- cache
Logical. Use disk cache? Default
TRUE.- max_tries
Integer. Retry attempts. Default
3L.- initial_delay
Numeric. Initial retry delay in seconds. Default
1.
Value
A terra::rast() SpatRaster. CRS: EPSG:4326. Values depend
on the variable (see WorldClim documentation).
Variables
bio01: Annual Mean Temperature (deg C x 10)
bio02: Mean Diurnal Range
bio03: Isothermality
bio04: Temperature Seasonality
bio05-bio11: Various temperature metrics
bio12: Annual Precipitation (mm)
bio13-bio19: Various precipitation metrics
References
Fick, S.E. & Hijmans, R.J. (2017). WorldClim 2: new 1km spatial resolution climate surfaces for global land areas. International Journal of Climatology, 37(12), 4302-4315. doi:10.1002/joc.5086
See also
read_gee(), collect_gee_data()
Other GEE readers:
read_chirps(),
read_era5(),
read_gee(),
read_landsat(),
read_modis_lst(),
read_modis_ndvi(),
read_sentinel2(),
read_slga(),
read_srtm()