rgbif (version 0.9.2)

networks: Networks metadata.

Description

Networks metadata.

Usage

networks(data = "all", uuid = NULL, query = NULL, identifier = NULL,
  identifierType = NULL, limit = 100, start = NULL, ...)

Arguments

data
The type of data to get. Default is all data.
uuid
UUID of the data network provider. This must be specified if data is anything other than 'all'.
query
Query nodes. Only used when data='all'. Ignored otherwise.
identifier
The value for this parameter can be a simple string or integer, e.g. identifier=120. This parameter doesn't seem to work right now.
identifierType
Used in combination with the identifier parameter to filter identifiers by identifier type. See details. This parameter doesn't seem to work right now.
limit
Number of records to return. Default: 100. Maximum: 1000.
start
Record number to start at. Default: 0. Use in combination with limit to page through results.
...
Further named parameters, such as query, path, etc, passed on to modify_url within GET call. Unnamed parameters will be comb

Details

identifierType options:

  • DOI
No description. FTP No description. GBIF_NODE Identifies the node (e.g: 'DK' for Denmark, 'sp2000' for Species 2000). GBIF_PARTICIPANT Participant identifier from the GBIF IMS Filemaker system. GBIF_PORTAL Indicates the identifier originated from an auto_increment column in the portal.data_provider or portal.data_resource table respectively. HANDLER No description. LSID Reference controlled by a separate system, used for example by DOI. SOURCE_ID No description. UNKNOWN No description. URI No description. URL No description. UUID No description.

References

http://www.gbif.org/developer/registry#networks

Examples

Run this code
networks(limit=5)
networks(uuid='16ab5405-6c94-4189-ac71-16ca3b753df7')
networks(data='endpoint', uuid='16ab5405-6c94-4189-ac71-16ca3b753df7')

# Pass on options to httr
library('httr')
# res <- networks(limit=5, config=progress())

Run the code above in your browser using DataCamp Workspace