get_hydrobio_stations_hydrobio {hubeau} | R Documentation |
Retrieve data from API "Hydrobiologie"
Description
The data originate from the "NAIADES" database. Available endpoints are:
-
get_hydrobio_stations_hydrobio
retrieves site data and locations -
get_hydrobio_indices
retrieves bioassessment indices values -
get_hydrobio_taxons
retrieves taxa data
See the API documentation for available filter parameters: https://hubeau.eaufrance.fr/page/api-hydrobiologie
Usage
get_hydrobio_stations_hydrobio(...)
get_hydrobio_indices(...)
get_hydrobio_taxons(...)
Arguments
... |
parameters of the queries and their values in the format
|
Value
A tibble::tibble with one row by record and one column by field.
Examples
## Not run:
# Retrieve the hydrobiology monitoring sites in the Pays-de-Loire region
list_params(api = "hydrobio",
endpoint = "stations_hydrobio")
get_hydrobio_stations_hydrobio(code_region = 52)
# Retrieve the hydrobiological bioassessment indices in the city of Rennes
list_params(api = "hydrobio",
endpoint = "indices")
get_hydrobio_indices(code_commune = 35051)
# species records in the city of Rennes
list_params(api = "hydrobio",
endpoint = "taxons")
get_hydrobio_taxons(code_commune = 35051)
## End(Not run)
[Package hubeau version 0.5.0 Index]