% Generated by roxygen2: do not edit by hand % Please edit documentation in R/get_indicateurs_services_services.R \name{get_indicateurs_services_services} \alias{get_indicateurs_services_services} \title{Retrieve performance indicators from drinking water supply and sanitation services at commune level} \usage{ get_indicateurs_services_services( params, cfg = config::get(file = system.file("config.yml", package = "hubeau")) ) } \arguments{ \item{params}{a \link{list} the list of parameters of the queries and their values in the format \code{list(ParamName = "Param value", ...)}, use the function \link{get_available_params} for a list of the available parameters for a given operation in an API and see the API documentation for the complete list of available filter parameters} \item{cfg}{a \link{config} object Configuration of the communication. Use by default the internal package configuration} } \value{ a \link[tibble:tibble]{tibble::tibble} with one row by commune, by service and by year and the following columns: \itemize{ \item "code_service": \link{character} identifier of the service \item "nom_service": \link{character} name of the service \item "code_commune_insee": \link{character} identifier of the commune \item "nom_commune": \link{character} name of the commune \item "numero_siren ": \link{character} SIREN identifier of the service \item "type_collectivite": \link{character} kind of collectivity \item "mode_gestion": \link{character} management mechanism of the service \item "annee": \link{integer} year of the data \item The following columns are the performance indicators flagged by their respective codes. The documentation of these codes can be found at this URL: \url{https://www.services.eaufrance.fr/indicateurs/indicateurs}. } } \description{ See the API documentation for available filter parameters: \url{https://hubeau.eaufrance.fr/page/api-indicateurs-services} } \examples{ # Retrieve performance indicator time series of the services in Romilly-sur-Seine get_indicateurs_services_services(list(code_commune = "10323")) }