This client connects to all Taxon-related endpoints of the NBA. Each endpoint is available as a class method (see section 'Methods' below). Optionally, a custom URL pointing to a NBA server and a user Agent can be specified by the user (see section 'Fields' below).
# client <- TaxonClient$new()
R6 class
basePath
Stores url path of the request, defaults to http://api.biodiversitydata.nl/v2
userAgent
Set the user agent of the request, defaults to nbaR/0.1.0
count
Get the number of taxa matching a given condition; Conditions given as query parameters or a querySpec JSON. Parameters:
query_spec
: Object of type QuerySpec or its JSON representation
queryParams
: named list or vector with query parameters
...
: additional parameters passed to httr::GET
integer
count_distinct_values
Count the distinct number of values that exist for a given field; See also endpoint /getDistinctValues. Parameters:
field
: name of field in the taxon object
...
: additional parameters passed to httr::GET
list
count_distinct_values_per_group
Count the distinct number of field values that exist per the given field to group by; See also endpoint /getDistinctValuesPerGroup. Parameters:
group
: name of field in the taxon object you want to group by
field
: name of field in the taxon object
...
: additional parameters passed to httr::GET
list
download_query
Dynamic download service: Query for taxa and return result as a stream ...; Query with query parameters or querySpec JSON. .... Parameters:
query_spec
: Object of type QuerySpec or its JSON representation
queryParams
: named list or vector with query parameters
...
: additional parameters passed to httr::GET
Taxon
dwca_get_data_set
Download dataset as Darwin Core Archive File; Available datasets can be queried with /taxon/dwca/getDataSetNames. Response saved to <datasetname>-<yyyymmdd>.dwca.zip. Parameters:
dataset
: name of dataset
filename
: location to save data, defaults to format(Sys.time(), "download-%Y-%m-%dT%H:%m.zip")
...
: additional parameters passed to httr::GET
dwca_get_data_set_names
Retrieve the names of all available datasets; Individual datasets can then be downloaded with /dwca/getDataSet/dataset. Parameters:
...
: additional parameters passed to httr::GET
character
dwca_query
Dynamic download service: Query for taxa and return result as Darwin Core Archive File; Query with query parameters or querySpec JSON. Response saved to nba-taxa.dwca.zip. Parameters:
query_spec
: Object of type QuerySpec or its JSON representation
queryParams
: named list or vector with query parameters
filename
: location to save data, defaults to format(Sys.time(), "download-%Y-%m-%dT%H:%m.zip")
...
: additional parameters passed to httr::GET
find
Find a taxon by id; If found, returns a single taxon. Parameters:
id
: id of taxon
...
: additional parameters passed to httr::GET
Taxon
find_by_ids
Find taxa by ids; Given multiple ids, returns a list of taxa. Parameters:
ids
: ids of multiple taxa, separated by comma
...
: additional parameters passed to httr::GET
Taxon
get_distinct_values
Get all different values that can be found for one field; A list of all fields for taxon documents can be retrieved with /metadata/getFieldInfo. Parameters:
field
: name of field in a taxon object
...
: additional parameters passed to httr::GET
list
get_distinct_values_per_group
Get all distinct values (and their document count) for the field given divided per distinct value of the field to group by; See also endpoint /getDistinctValues. Parameters:
group
: name of field in the taxon object you want to group by
field
: name of field in the taxon object
...
: additional parameters passed to httr::GET
list
get_field_info
Returns extended information for each field of a specimen document; Info consists of whether the fields is indexed, the ElasticSearch datatype and a list of allowed operators. Parameters:
...
: additional parameters passed to httr::GET
list
get_paths
Returns the full path of all fields within a document; See also metadata/getFieldInfo for all allowed operators per field. Parameters:
...
: additional parameters passed to httr::GET
character
get_setting
Get the value of an NBA setting; All settings can be queried with /metadata/getSettings. Parameters:
name
: name of setting
...
: additional parameters passed to httr::GET
list
get_settings
List all publicly available configuration settings for the NBA; The value of a specific setting can be queried with metadata/getSetting/name. Parameters:
...
: additional parameters passed to httr::GET
list
group_by_scientific_name
Aggregates Taxon and Specimen documents according to their scientific names; Returns a list with ScientificNameGroups, which contain Taxon and Specimen documents that share a scientific name. Parameters:
query_spec
: Object of type QuerySpec or its JSON representation
queryParams
: named list or vector with query parameters
...
: additional parameters passed to httr::GET
QueryResult
is_operator_allowed
Checks if a given operator is allowed for a given field; See also metadata/getFieldInfo. Parameters:
field
: specimen document field
operator
: operator
...
: additional parameters passed to httr::GET
list
query
Query for taxa; Search for taxa (GET) using query parameters or a querySpec JSON. Parameters:
query_spec
: Object of type QuerySpec or its JSON representation
queryParams
: named list or vector with query parameters
...
: additional parameters passed to httr::GET
QueryResult