vert_id | R Documentation |
Search by Vertnet occurrence ID
vert_id(ids, compact = TRUE, messages = TRUE, ...)
ids |
(character) VertNet IDs, one or more. Required. |
compact |
(logical) Return a compact data frame. That is, remove
empty columns. Default: |
messages |
(logical) Print progress and information messages.
Default: |
... |
Curl arguments passed on to crul::HttpClient |
VertNet IDs can be a variety of things, some URIs
(i.e., with http://...), while others start with urn
.
Internally in this function we filter data to darwin core terms only. To
see what terms we use, see:
print(simple_dwc_terms)
.
See documentation for more information:
?simple_dwc_terms
A list, with data frame of search results, and list of metadata
## Not run:
vert_id(ids = "urn:catalog:CM:Herps:116520")
ids <- c("http://arctos.database.museum/guid/MSB:Mamm:56979?seid=1643089",
"urn:catalog:CM:Herps:116520",
"urn:catalog:AUM:Fish:13271")
res <- vert_id(ids)
res$data$occurrenceid
out <- vertsearch(taxon = "aves", state = "california", limit = 5)
(ids <- out$data$occurrenceid)
res <- vert_id(ids)
identical(sort(res$data$occurrenceid), sort(ids))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.