View source: R/ebirdregionspecies.R
ebirdregionspecies | R Documentation |
Returns the eBird codes for all species-level taxa recorded in a particular region or location. Codes are returned in taxonomic order.
ebirdregionspecies(location, key = NULL, ...)
location |
Any valid location, USFWS region, subnational2, subnational1, country, or custom region code. (Location can be a hotspot or personal location). |
key |
eBird API key. You can obtain one from https://ebird.org/api/keygen.
We strongly recommend storing it in your |
... |
Curl options passed on to |
A single column data.frame containing the collected information:
"speciesCode": eBird species code, suitable for joining
to the ebirdtaxonomy
David Bradnum david.bradnum@gmail.com
## Not run:
ebirdregionspecies("GB") # all in Great Britain
ebirdregionspecies("GB-ENG") # all in England
ebirdregionspecies("GB-ENG-LND") # all in London
library(dplyr)
taxonomy <- ebirdtaxonomy()
localSpecies <- ebirdregionspecies("L5803024") # specific hotspot
inner_join(localSpecies, taxonomy)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.