Many parts of the GBIF API make use of enumerations, i.e. controlled vocabularies for specific topics - and are available via these functions
Arguments
- x
A given enumeration.
- curlopts
list of named curl options passed on to
HttpClient
. seecurl::curl_options
for curl options
Examples
if (FALSE) { # \dontrun{
# basic enumeration
enumeration()
enumeration("NameType")
enumeration("MetadataType")
enumeration("TypeStatus")
# country enumeration
enumeration_country()
# curl options
enumeration(curlopts = list(verbose=TRUE))
} # }