Coerce occurrence keys to idigbio objects
Arguments
- x
Various inputs, including the output from a call to
occ()
(class occdat),occ2df()
(class data.frame), or a list, numeric, character, idigbiokey, or occkey.- ...
curl options; named parameters passed on to
httr::GET()
Details
Internally, we use idig_view_records
, whereas we use
idig_search_records()
in the occ()
function.
See also
Other coercion:
as.ala()
,
as.gbif()
,
as.inat()
,
as.obis()
,
as.vertnet()
Examples
if (FALSE) { # \dontrun{
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)))
} # }