hydroscoper
’s dataThis vignette shows how to use the package’s internal data sets.
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
#> <int> <chr> <chr> <chr> <chr> <dbl> <dbl>
#> 1 501032 AG. … "KOURTALIO… GR13 min_… NA NA
#> 2 200246 GEPH… "ALPHEIOS … GR01 min_… 22.0 37.5
#> 3 200237 TROP… "ALPHEIOS … GR01 min_… 22.0 37.7
#> 4 200231 BYTI… "ALPHEIOS … GR01 min_… 22.2 37.7
#> 5 200200 LYKO… "ALPHEIOS … GR01 min_… 22.2 37.9
#> 6 200236 MEGA… "ALPHEIOS … GR01 min_… 22.1 37.4
#> 7 200244 ODOG… "REMA CHOR… GR01 min_… 21.8 37.0
#> 8 200204 TRIP… "ALPHEIOS … GR01 min_… 21.9 37.9
#> 9 200198 KAST… "ALPHEIOS … GR01 min_… 22.0 37.9
#> 10 200239 PERD… "ALPHEIOS … GR01 min_… 22.0 37.7
#> # ... with 2,312 more rows, and 2 more variables: altitude <dbl>,
#> # 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_da… subdomain
#> <int> <int> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 2248 501049 tempera… <NA> ° 2009-02-0… 2010-0… kyy
#> 2 430 200103 wind_di… <NA> ° 1950-10-2… 1997-0… kyy
#> 3 905 200247 wind_di… <NA> ° 1967-01-0… 1997-1… kyy
#> 4 2243 501058 tempera… <NA> ° 1999-01-0… 2010-0… kyy
#> 5 438 200105 wind_di… <NA> ° 1950-06-0… 1997-0… kyy
#> 6 553 200135 wind_di… <NA> ° 1964-11-2… 1997-0… kyy
#> 7 966 200265 wind_di… <NA> ° 1967-01-0… 1997-0… kyy
#> 8 775 200203 wind_di… <NA> ° 1964-05-2… 1997-0… kyy
#> 9 2245 501046 tempera… <NA> ° 2007-07-0… 2010-0… kyy
#> 10 247 200034 wind_di… <NA> ° 1969-11-2… 1997-0… 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.
stations_ts <- subset(stations, station_id %in% timeseries$station_id &
subdomain %in% c("kyy", "ypaat"))
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.