knitr::opts_chunk$set(collapse = T, tidy=T, comment = NA, warning=F, message=F)
You can install edc from github with:
# Install remotes if not available if(!"remotes" %in% installed.packages()[,"Package"]) install.packages("remotes") # Install edc package from Github remotes::install_github("RS-eco/edc", build_vignettes = T)
If package installation with install_github()
fails, try this as an alternative:
tmp_zip <- tempfile(fileext = ".zip") source_url <- "https://api.github.com/repos/RS-eco/edc/zipball/main" utils::download.file(source_url, destfile=tmp_zip, method="wget") file.exists(tmp_zip) remotes::install_local(tmp_zip)
After installation, simply load the edc package:
library(edc)
If you encounter a bug or if you have any problems, please file an issue on Github.
Shapefile of Europe can be accessed by:
data("europe")
The bioclimatic Euro-Cordex data can be accessed by:
# Euro-Cordex data for Europe load(system.file("extdata", "cordex_bioclim_eur.rda", package = "edc")) # Data at 0.11 degree resolution #There is also a version in 0.44 degree resolution data("cordex_bioclim_eur_p44deg") # Euro-Cordex data for Bavaria can be found in the bavDC package under: https://github.com/RS-eco/bavDC
Note: Please also have a look at the corresponding vignette for detailed information about the dataset and the related variables.
E-OBS in situ gridded climate data of Europe at 1 degree resolution:
# Elevation data("e-obs_elev_ens_eur_p1deg") # Rainfall load(system.file("extdata", "e-obs_rr_ens_mean_0.1deg_eur_yearmon.rda", package = "edc")) # Mean temperature load(system.file("extdata", "e-obs_tg_ens_mean_0.1deg_eur_yearmon.rda", package = "edc")) # Minimum temperature load(system.file("extdata", "e-obs_tn_ens_mean_0.1deg_eur_yearmon.rda", package = "edc")) # Maximum temperature load(system.file("extdata", "e-obs_tx_ens_mean_0.1deg_eur_yearmon.rda", package = "edc"))
WFDE5 re-analysis climate (rainflux, snowflux, air temperature) data:
# Rainflux data("wfde5_rainf_eur") # Snowflux data("wfde5_snowf_eur") # Air temperature data("wfde5_tair_eur")
Fraction of ESA CCI land cover time series (1992 - 2018) for Europe:
data("cci_eur")
# Corine data for whole of Europe aggregated for three different resolutions load(system.file("extdata", "corine_lc_eur_1km.rda", package = "edc")) data("corine_lc_eur_p11deg") data("corine_lc_eur_p44deg")
Note: Please also have a look at the corresponding vignette for detailed information about the dataset and the related variables.
# EU-DEM Elevation data aggregated to 2 km load(system.file("extdata", "eu_dem_eur_2km.rda", package = "edc")) # EU-DEM hillshade data aggregated to 2km load(system.file("extdata", "hillshade_eur_2km.rda", package = "edc")) # EU-DEM Elevation data aggregated to 0.11 & 0.44 deg data("eu_dem_eur_p11deg") data("eu_dem_eur_p44deg")
The SRTM elevation data can be accessed by:
# SRTM data for Europe load(system.file("extdata", "srtm_csi_eur_900m.rda", package = "edc")) data("srtm_csi_eur_p11deg") data("srtm_csi_eur_p44deg")
Note: Please also have a look at the corresponding vignette for detailed information about the dataset and the related variables.
The IUCN range map data can be accessed by:
# Odonata IUCN ranges for Europe data("iucn_odonata_eur_p11deg") # BirdLife ranges for Europe data("birdlife_eur_p11deg")
Note: Please also have a look at the corresponding vignette for detailed information about the dataset and the related variables.
The EBCC Atlas data can be accessed by:
# Bird atlas data for Europe data("ebcc_eur") # EBCC data for selected bird species data("ebcc_Sylvia_curruca") data("ebcc_Turdus_torquatus") data("ebcc_Phylloscopus_bonelli") data("ebcc_Vanellus_vanellus")
Note: Please also have a look at the corresponding vignette for detailed information about the dataset and the related variables.
The Kalkman Odonata Atlas data for Europe can be accessed by:
data("kalkman_odonata_eur")
The Hochkirch Orthoptera Atlas data for Europe can be accessed by:
data("hochkirch_orthoptera_eur")
Note: Please also have a look at the corresponding vignette for detailed information about the datasets and the related variables.
The landsystem data for Europe can be accessed by:
# Original 1km data data("landsystem_eur_1km") # Percentage cover of each landsystem class on a 10x10 km data("landsystem_perc_eur_10km")
A gridded dataset of the biogeographic regions of Europe can be accessed by:
data("biogeographic_regions_eur")
The zoning of UNESCO Biosphere Reserves data for Europe can be accessed by:
load(system.file("extdata", "unesco_br_zones_eur.rda", package = "edc")) # a simplified version to reduce file size
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.