
Get checklist via species or infraspecies ID.
search_checklist(query = NULL, mc.cores = 2)
string
One or more queries, see search_family_id
and search_taxon_id
for more details.
The number of cores to use, i.e. at most how many child processes will be run simultaneously. The option is initialized from environment variable MC_CORES if set. Must be at least one, and parallelization requires at least two cores,see mclapply
for details.
Catalogue of Life China list(s)
Visit the website http://sp2000.org.cn/api/document for more details.
# NOT RUN {
##Set your key
set_search_key("your apiKey",db = "sp2000")
##Search family IDs via family name
familyid <- search_family_id(query = "Anguillidae")
##Search taxon IDs via familyID
taxonid <- search_taxon_id(query = familyid$Anguillidae$data$record_id,name = "familyID")
#Download detailed lists via species or infraspecies ID
query <- taxonid[["3851c5311bed46c19529cb155d37aa9b"]][["data"]][["namecode"]]
x <- search_checklist(query = query)
str(x)
# }
Run the code above in your browser using DataLab