search_checklist {SP2000} | R Documentation |
Search Catalogue of Life China checklist
Description
Get checklist via species or infraspecies ID.
Usage
search_checklist(query = NULL, mc.cores = 2)
Arguments
query |
|
mc.cores |
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 |
Details
Visit the website http://sp2000.org.cn/api/document for more details.
Value
Catalogue of Life China list(s)
Author(s)
Liuyong Ding ly_ding@126.com
Examples
## 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)
## End(Not run)
[Package SP2000 version 0.2.0 Index]