precipitation_hourly | R Documentation |
Hourly precipitation data downloaded from DWD for monitoring station Braunschweig (id = 662) between 1997-10-22 and 2021-12-31
precipitation_hourly
A data.frame with 211629 rows and 2 variables:
date time
precipitation in mm
## Not run:
install.packages(c("dplyr", "rdwd"))
library(dplyr)
rdwd::updateRdwd()
rdwd::findID("Braunschweig")
rdwd::selectDWD(name = "Braunschweig", res = "daily")
url_bs_rain <- rdwd::selectDWD(name = "Braunschweig",
res = "hourly",
var = "precipitation",
per = "historical" )
bs_rain <- rdwd::dataDWD(url_bs_rain)
precipitation_hourly <- rdwd::dataDWD(url_bs_rain) %>%
dplyr::select(.data$MESS_DATUM, .data$R1) %>%
dplyr::rename("datetime" = "MESS_DATUM",
"precipitation_mm" = "R1")
## End(Not run)
head(flextreat.hydrus1d::precipitation_hourly)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.