get_data
returns a tibble from a Hydroscope's
time-series text file.
get_data(subdomain = c("kyy", "ypaat", "emy", "deh"), time_id)
If subdomain
is one of:
kyy
, Ministry of Environment and Energy
ypaat
, Ministry of Rural Development and Food
deh
, Greek Public Power Corporation
emy
, National Meteorological Service
and time_id
exists in that subdomain
, returns a tibble with
the time series values. Otherwise returns an error message.
The dataframe columns are:
The time series Dates (POSIXct)
The time series values (numeric)
Comments about the values (character)
Data are not available freely in the sub-domains: "deh"
(Greek Public Power Corporation) and
"emy"
(National Meteorological Service).
Stations' data are retrieved from the Hydroscope's databases:
Ministry of Environment, Energy and Climate Change.
Ministry of Rural Development and Food.
if (FALSE) { # \dontrun{
# get time series 912 from the Greek Ministry of Environment and Energy
time_series <- get_data("kyy", 912)
} # }