https://github.com/cran/rgbif
Raw File
Tip revision: 7ce22f0c11cc31a0cabb5aeb98dbed5775776684 authored by Scott Chamberlain on 01 March 2013, 00:00:00 UTC
version 0.2.0
Tip revision: 7ce22f0
providers.Rd
\name{providers}
\alias{providers}
\title{Get data providers and their unique keys.}
\usage{
  providers(name = "", isocountrycode = NULL,
    modifiedsince = NULL, startindex = NULL,
    maxresults = NULL,
    url = "http://data.gbif.org/ws/rest/provider/list")
}
\arguments{
  \item{name}{data provider name search string, by default
  searches all data providers by defining name = ''}

  \item{isocountrycode}{return only providers from the
  country identified by the supplied 2-letter ISO code.}

  \item{modifiedsince}{return only records which have been
  indexed or modified on or after the supplied date (format
  YYYY-MM-DD, e.g. 2006-11-28)}

  \item{startindex}{return the subset of the matching
  records that starts at the supplied (zero-based index).}

  \item{maxresults}{max number of results to return}

  \item{url}{the base GBIF API url for the function (should
  be left to default)}
}
\description{
  Beware: It takes a while to retrieve the full list of
  providers - so go get more coffee.
}
\examples{
\dontrun{
# Test the function for a few providers
providers(maxresults=10)

# By data provider name
providers('University of Texas-Austin')
}
}

back to top