as.idigbio {spocc} | R Documentation |
Coerce occurrence keys to idigbio objects
Description
Coerce occurrence keys to idigbio objects
Usage
as.idigbio(x, ...)
Arguments
x |
Various inputs, including the output from a call to |
... |
curl options; named parameters passed on to |
Details
Internally, we use idig_view_records
, whereas we use
idig_search_records()
in the occ()
function.
Value
One or more in a list of both class idigbiokey and occkey
See Also
Other coercion:
as.ala()
,
as.gbif()
,
as.inat()
,
as.obis()
,
as.vertnet()
Examples
## Not run:
spnames <- c('Accipiter striatus', 'Setophaga caerulescens',
'Spinus tristis')
out <- occ(query=spnames, from='idigbio', limit=2)
res <- occ2df(out)
(tt <- as.idigbio(out))
(uu <- as.idigbio(res))
as.idigbio(res$key[1])
as.idigbio(as.list(res$key[1:2]))
as.idigbio(tt[[1]])
as.idigbio(uu[[1]])
as.idigbio(tt[1:2])
library("dplyr")
bind_rows(lapply(tt, function(x) data.frame(unclass(x)$data)))
## End(Not run)
[Package spocc version 1.2.3 Index]