as.idigbio: Coerce occurrence keys to idigbio objects

View source: R/as.idigbio.R

as.idigbioR 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 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.

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)

spocc documentation built on March 31, 2023, 9:59 p.m.