Skip to contents

Download the Chorological Maps for the main European Woody Species.

Usage

fd_forest_chorological(species, range = "nat", quiet = TRUE)

Arguments

species

a character vector with the Latin name of a tree species contained in the Chorological Maps database (see details)

range

the default "nat" downloads the probable native range of the species, while "syn" downloads the synanthropic range (i.e. the introduced and naturalized area and isolated population since Neolithic)

quiet

if TRUE (the default), suppress status messages, and the progress bar

Value

sf object

Details

Data may be freely used for research, study, or teaching, but be cited appropriately (see references below).

The chorological maps provide a general overview of the distribution of the main European woody species. The geodatabase was formed by the combination of numerous and heterogeneous data for a continental-scale overview of the species' distribution range. There are a total of 4 versions available, and the function will get the most recent version for each of the species. This means for instance that some species may be on version 2, and therefore, the data from that version will be retrieved.

References

Caudullo, G., Welk, E., San-Miguel-Ayanz, J., 2017. Chorological maps for the main European woody species. Data in Brief 12, 666. DOI: doi.org/10.1016/j.dib.2017.05.007

See also

metadata_forestdata for a list of possible species

Examples

# \donttest{
 # Download data for sweet chestnut
 chestnut_nat_sf <- fd_forest_chorological(species = "Castanea sativa", range = "nat")

 # Plot the data
 plot(chestnut_nat_sf$geometry)

 # }