⚠️There's a newer version (2.11.3) of this package. Take me there.

robis

R client for the OBIS API

Installation

# CRAN
install.packages("robis")

# latest development version
install.packages("devtools")
devtools::install_github("iobis/robis")

Occurrence

Get occurrences by scientific name:

data <- occurrence("Abra alba")

Get occurrences by AphiaID:

data <- occurrence(aphiaid = 141433)

Restrict fields in result set:

data <- occurrence("Abra alba", fields = c("decimalLongitude", "decimalLatitude"))

Filter occurrences by QC flags:

data <- occurrence("Abra nitida", qc = c(22, 23))

Get occurrences by geometry:

data <- occurrence("Abra alba", geometry = "POLYGON ((2.59689 51.16772, 2.62436 51.14059, 2.76066 51.19225, 2.73216 51.20946, 2.59689 51.16772))")

Plot occurrences on a Leaflet map:

leafletmap(data)

Checklist

Get a checklist for a specific group and year:

data <- checklist("Semelidae", year = 2005)

Get a checklist for a region:

data <- checklist(geometry = "POLYGON ((2.59689 51.16772, 2.62436 51.14059, 2.76066 51.19225, 2.73216 51.20946, 2.59689 51.16772))")

Dataset

Get dataset information by dataset ID:

datasets <- dataset(seq(2500, 2520))

Copy Link

Version

Down Chevron

Install

install.packages('robis')

Monthly Downloads

567

Version

1.0.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

July 2nd, 2018

Functions in robis (1.0.1)