Learn R Programming

bold (version 0.3.0)

bold_specimens: Search BOLD for specimens.

Description

Search BOLD for specimens.

Usage

bold_specimens(taxon = NULL, ids = NULL, bin = NULL, container = NULL,
  institutions = NULL, researchers = NULL, geo = NULL, response = FALSE,
  format = "tsv", ...)

Arguments

taxon
(character) Returns all records containing matching taxa. Taxa includes the ranks of phylum, class, order, family, subfamily, genus, and species.
ids
(character) Returns all records containing matching IDs. IDs include Sample IDs, Process IDs, Museum IDs and Field IDs.
bin
(character) Returns all records contained in matching BINs. A BIN is defined by a Barcode Index Number URI.
container
(character) Returns all records contained in matching projects or datasets. Containers include project codes and dataset codes
institutions
(character) Returns all records stored in matching institutions. Institutions are the Specimen Storing Site.
researchers
(character) Returns all records containing matching researcher names. Researchers include collectors and specimen identifiers.
geo
(character) Returns all records collected in matching geographic sites. Geographic sites includes countries and province/states.
response
(logical) Note that response is the object that returns from the Curl call, useful for debugging, and getting detailed info on the API call.
format
(character) One of xml or tsv (default). tsv format gives back a data.frame object. xml gives back parsed xml as a
...
Further args passed on to httr::GET, main purpose being curl debugging

References

http://www.boldsystems.org/index.php/resources/api#specimenParameters

Examples

Run this code
bold_specimens(taxon='Osmia')
bold_specimens(taxon='Osmia', format='xml')
# bold_specimens(taxon='Osmia', response=TRUE)
res <- bold_specimens(taxon='Osmia', format='xml', response=TRUE)
res$url
res$status_code
res$headers

# More than 1 can be given for all searh parameters
bold_specimens(taxon=c('Coelioxys','Osmia'))

## curl debugging
### These examples below take a long time, so you can set a timeout so that it stops by X sec
library("httr")
head(bold_specimens(taxon='Osmia', config=verbose()))
# head(bold_specimens(geo='Costa Rica', config=timeout(6)))
# head(bold_specimens(taxon="Formicidae", geo="Canada", config=timeout(6)))

Run the code above in your browser using DataLab