...: parameters of the queries and their values in the format Param1_Name = "Param1 value", Param2_Name = "Param2 value", use the function list_params for a list of the available filter parameters for a given API endpoint and see the API documentation for their description
Returns
A tibble::tibble with one row by record and one column by field.
Examples
## Not run:# Retrieve 2022 observation campaigns in the Jura French departmentget_ecoulement_campagnes( list(code_departement ="39", date_campagne_min ="2022-01-01", date_campagne_max ="2022-12-31"))# Retrieve river stationsstations_39 <- get_ecoulement_stations( list(code_departement ="39", fields ="code_station,libelle_cours_eau,libelle_commune"))stations_39
# Get the query parameters for the requested API/endpointlist_params(api ="ecoulement", endpoint ="observations")# Retrieve the river flow data in the Jura departement in 2022 with# a selection of the fieldsonde_39 <- get_ecoulement_observations( list(code_departement ="39", date_observation_min ="2022-01-01", date_observation_max ="2022-12-31", fields ="code_station,libelle_station,date_observation,libelle_ecoulement"))onde_39
## End(Not run)