taxize (version 0.1.5)

col_search: Search Catalogue of Life for taxonomic IDs

Description

Search Catalogue of Life for taxonomic IDs

Usage

col_search(name = NULL, id = NULL, start = NULL,
    checklist = NULL)

Arguments

name
The string to search for. Only exact matches found the name given will be returned, unless one or wildcards are included in the search string. An * (asterisk) character denotes a wildcard; a character may also be used. The name must be at least 3
id
The record ID of the specific record to return (only for scientific names of species or infraspecific taxa)
start
The first record to return. If omitted, the results are returned from the first record (start=0). This is useful if the total number of results is larger than the maximum number of results returned by a single Web service query (currently the maxi
checklist
The year of the checklist to query, if you want a specific year's checklist instead of the lastest as default (numeric).

Value

  • A list of data.frame's.

Details

You must provide one of name or id. The other parameters (format and start) are optional.

References

http://webservice.catalogueoflife.org/

Examples

Run this code
# A basic example
col_search(name="Apis")

# Many names
col_search(name=c("Apis","Puma concolor"))

# An example where there is no data
col_search(id=11935941)

Run the code above in your browser using DataLab