The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Pass station IDs from different providers in one call. The router matches each ID to its adapter automatically.
Because every adapter returns the same column set, data can be stacked directly and analysed together.
cehq_data <- hc_read_daily_flows(
station_id = c("023301", "030101"),
start_date = "2015-01-01",
end_date = "2020-12-31",
source = "cehq"
)
hq_data <- hc_read_daily_flows(
station_id = "3-230",
start_date = Sys.Date() - 7,
end_date = Sys.Date(),
source = "hydroquebec"
)
# Stack: works because the schema is identical
all_flows <- bind_rows(cehq_data, hq_data)
all_flows |>
count(provider_name)Use source = to skip station detection entirely - useful
when you know the provider or when working with large station lists.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.