get_prelevements_points_prelevement {hubeau} | R Documentation |
Retrieve data from API "Prélèvements en eau"
Description
Available endpoints are:
-
get_prelevements_points_prelevement
retrieves withdrawal points -
get_prelevements_ouvrages
retrieves withdrawal devices -
get_prelevements_chroniques
retrieves time series of withdrawals
See the API documentation for available filter parameters: https://hubeau.eaufrance.fr/page/api-prelevements-eau
Usage
get_prelevements_points_prelevement(...)
get_prelevements_ouvrages(...)
get_prelevements_chroniques(...)
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 withdrawal points located in Romilly-sur-Seine
get_prelevements_points_prelevement(code_commune_insee = "10323")
# Retrieve the withdrawal devices located in Romilly-sur-Seine
get_prelevements_ouvrages(code_commune_insee = "10323")
# Retrieve the withdrawal time series of the devices located in Romilly-sur-Seine
get_prelevements_chroniques(code_commune_insee = "10323")
## End(Not run)
[Package hubeau version 0.5.0 Index]