search_taxon_id {SP2000} | R Documentation |
Search taxon IDs
Description
Search taxon IDs via familyID ,scientificName and commonName.
Usage
search_taxon_id(
query = NULL,
name = "scientificName",
start = 1,
limit = 20,
mc.cores = 2
)
Arguments
query |
|
name |
|
start |
|
limit |
|
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 |
Format
query:
- taxonIDs
an array of species' ids
- familyID
family ID, unique value
- scientificName
the scientific name, or part of the scientific name, supports Latin names and Chinese
- commonName
common name, or part of common name
Details
Visit the website http://sp2000.org.cn/api/document for more details
Value
dataframe
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")
## End(Not run)