#' get_to_station from webpage
#' @param station gauging station code
#' @return page corresponding to station on banquehydro
get_to_station <- function (station) {
url="http://www.hydro.eaufrance.fr"
# Formulaire de sélection des stations
form0<- list(
cmd = "filtrer",
consulte = "rechercher",
code_station = "",
cours_d_eau = "",
commune = "",
departement = "",
bassin_hydrographique = "",
station_en_service = "1",
station_hydrologique = "1",
btnValider = "Visualiser"
)
form0[["station[]"]] = station
url.selection = paste(url,"selection.php", sep = "/")
res <- httr::POST(
url.selection,
body = form0,
encode = "form"#,
#httr::verbose()
)
return(res)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.