hydroscoper
’s dataThis vignette shows how to use the package’s internal data sets.
library(hydroscoper)
library(tibble)
library(ggplot2)
There are three data sets stored in the package. stations
is comprised of the stations’ id, name, longitude, latitude, etc.
stations#> # A tibble: 2,322 x 9
#> station_id name water_basin water_division owner longitude latitude altitude
#> <int> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 501032 AG. … "KOURTALIO… GR13 min_… NA NA NA
#> 2 200246 GEPH… "ALPHEIOS … GR01 min_… 22.0 37.5 318
#> 3 200237 TROP… "ALPHEIOS … GR01 min_… 22.0 37.7 728.
#> 4 200231 BYTI… "ALPHEIOS … GR01 min_… 22.2 37.7 1011.
#> 5 200200 LYKO… "ALPHEIOS … GR01 min_… 22.2 37.9 758.
#> 6 200236 MEGA… "ALPHEIOS … GR01 min_… 22.1 37.4 429.
#> 7 200244 ODOG… "REMA CHOR… GR01 min_… 21.8 37.0 182.
#> 8 200204 TRIP… "ALPHEIOS … GR01 min_… 21.9 37.9 570.
#> 9 200198 KAST… "ALPHEIOS … GR01 min_… 22.0 37.9 792.
#> 10 200239 PERD… "ALPHEIOS … GR01 min_… 22.0 37.7 837.
#> # … with 2,312 more rows, and 1 more variable: subdomain <chr>
timeseries
of the time series’ id, the corresponding station, variable type, time step etc.
timeseries#> # A tibble: 10,804 x 8
#> time_id station_id variable timestep units start_date end_date subdomain
#> <int> <int> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 2248 501049 temperat… <NA> ° 2009-02-01T… 2010-08-3… kyy
#> 2 430 200103 wind_dir… <NA> ° 1950-10-26T… 1997-07-1… kyy
#> 3 905 200247 wind_dir… <NA> ° 1967-01-01T… 1997-12-3… kyy
#> 4 2243 501058 temperat… <NA> ° 1999-01-01T… 2010-08-3… kyy
#> 5 438 200105 wind_dir… <NA> ° 1950-06-05T… 1997-07-3… kyy
#> 6 553 200135 wind_dir… <NA> ° 1964-11-21T… 1997-08-3… kyy
#> 7 966 200265 wind_dir… <NA> ° 1967-01-01T… 1997-03-3… kyy
#> 8 775 200203 wind_dir… <NA> ° 1964-05-20T… 1997-06-3… kyy
#> 9 2245 501046 temperat… <NA> ° 2007-07-01T… 2010-07-0… kyy
#> 10 247 200034 wind_dir… <NA> ° 1969-11-25T… 1997-09-1… kyy
#> # … with 10,794 more rows
greece_borders
is a data-frame for use with the function geom_polygon
from the ggplot2
package.
stations
and greece_borders
can be used to create a map with all Hydroscope’s stations. Unfortunately, there is a number of them that have erroneous coordinates (over the sea and far from Greece). Also, there are 120 stations with missing coordinates.
ggplot() +
geom_polygon(data = greece_borders,
aes(long, lat, group = group),
fill = "grey",
color = NA) +
geom_point(data = stations,
aes(x = longitude, y = latitude, color = subdomain)) +
scale_color_manual(values=c("#E64B35FF", "#4DBBD5FF", "#00A087FF",
"#3C5488FF"))+
coord_fixed(ratio=1) +
theme_bw()
#> Warning: Removed 120 rows containing missing values (geom_point).
The location of the stations with time series available to download are presented at the following map.
<- subset(stations, station_id %in% timeseries$station_id &
stations_ts %in% c("kyy", "ypaat"))
subdomain
ggplot() +
geom_polygon(data = greece_borders,
aes(long, lat, group = group),
fill = "grey",
color = NA) +
geom_point(data = stations_ts,
aes(x = longitude, y = latitude, color = subdomain)) +
scale_color_manual(values=c("#00A087FF", "#3C5488FF"))+
coord_fixed(ratio=1) +
theme_bw()
#> Warning: Removed 10 rows containing missing values (geom_point).
Although there is a large number of stations with available data, there is heterogeneity in the coverage of the country.