Search for pages in EOL database using a taxonconceptID.
eol_pages(
taxonconceptID,
images_per_page = NULL,
images_page = NULL,
videos_per_page = NULL,
videos_page = NULL,
sounds_per_page = NULL,
sounds_page = NULL,
maps_per_page = NULL,
maps_page = NULL,
texts_per_page = NULL,
texts_page = NULL,
subjects = "overview",
licenses = "all",
details = FALSE,
common_names = FALSE,
synonyms = FALSE,
references = FALSE,
taxonomy = TRUE,
vetted = 0,
cache_ttl = NULL,
...
)
JSON list object, or data.frame.
(numeric) a taxonconceptID, which is also the page number
(integer) number of returned image objects (0-75)
(integer) images page
(integer) number of returned video objects (0-75)
(integer) videos page
(integer) number of returned sound objects (0-75)
(integer) sounds page
(integer) number of returned map objects (0-75)
(integer) maps page
(integer) number of returned text objects (0-75)
(integer) texts page
'overview' (default) to return the overview text (if exists), a pipe | delimited list of subject names from the list of EOL accepted subjects (e.g. TaxonBiology, FossilHistory), or 'all' to get text in any subject. Always returns an overview text as a first result (if one exists in the given context).
A pipe | delimited list of licenses or 'all' (default) to get objects under any license. Licenses abbreviated cc- are all Creative Commons licenses. Visit their site for more information on the various licenses they offer.
Include all metadata for data objects. (Default: FALSE
)
Return all common names for the page's taxon
(Default: FALSE
)
Return all synonyms for the page's taxon
(Default: FALSE
)
Return all references for the page's taxon
(Default: FALSE
)
(logical) Whether to return any taxonomy details from
different taxon hierarchy providers, in an array named taxonconcepts
(Default: TRUE
)
If 'vetted' is given a value of '1', then only trusted
content will be returned. If 'vetted' is '2', then only trusted and
unreviewed content will be returned (untrusted content will not be returned).
The default is to return all content. (Default: FALSE
)
The number of seconds you wish to have the response cached.
Curl options passed on to crul::HttpClient
It's possible to return JSON or XML with the EOL API. However, this function only returns JSON for now.
if (FALSE) {
(pageid <- eol_search('Pomatomus')$pageid[1])
x <- eol_pages(taxonconceptID = pageid)
x
x$scinames
z <- eol_pages(taxonconceptID = pageid, synonyms = TRUE)
z$synonyms
z <- eol_pages(taxonconceptID = pageid, common_names = TRUE)
z$vernacular
}
Run the code above in your browser using DataLab