View source: R/italic_occurrences.R
italic_occurrences | R Documentation |
Retrieves occurrence records from Italian herbarium collections for specified lichen taxa. Only accepts names that exist in the database of ITALIC.
italic_occurrences(sp_names, result_data = "simple")
sp_names |
Character vector of accepted names |
result_data |
Character string specifying output detail level: "simple" (default) or "extended" |
A data frame with occurrence records. Column names follow the Darwin Core standard, with the additional column substratum, which is particularly relevant for lichens. For simple output:
The scientific name provided as input
Latitude in decimal degrees
Longitude in decimal degrees
Spatial uncertainty of the coordinates
Substrate on which the specimen was found
Code of the herbarium holding the specimen
Collection date
Extended output adds:
Collection locality
Specimen identifier in the collection
Lower limit of the elevation range
Upper limit of the elevation range
Scientific name reported on the original label
Person who identified the specimen
Before using this function with a list of names, first obtain their accepted names
using italic_match()
.
Example workflow:
names_matched <- italic_match(your_names) occ <- italic_occurrences(names_matched$accepted_name)
ITALIC - The Information System on Italian Lichens https://italic.units.it
## Not run:
# Get simple occurrence data
italic_occurrences("Cetraria ericetorum Opiz")
# Get extended occurrence data
occ_ext <- italic_occurrences("Cetraria ericetorum Opiz", result_data = "extended")
# Then get citations for the retrieved occurrences
italic_occurrences_references(occ_ext)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.