gisco_get_education {giscoR} | R Documentation |
Get locations of education services in Europe
Description
The dataset contains information on main education services by Member States.
Usage
gisco_get_education(
cache = TRUE,
update_cache = FALSE,
cache_dir = NULL,
verbose = FALSE,
country = NULL
)
Arguments
cache |
A logical whether to do caching. Default is |
update_cache |
A logical whether to update cache. Default is |
cache_dir |
A path to a cache directory. See About caching. |
verbose |
Logical, displays information. Useful for debugging,
default is |
country |
Optional. A character vector of country codes. It could be
either a vector of country names, a vector of ISO3 country codes or a
vector of Eurostat country codes. Mixed types (as |
Details
Files are distributed on EPSG:4326. Metadata available on https://gisco-services.ec.europa.eu/pub/education/metadata.pdf.
Value
A POINT
sf
object.
About caching
You can set your cache_dir
with gisco_set_cache_dir()
.
Sometimes cached files may be corrupt. On that case, try re-downloading
the data setting update_cache = TRUE
.
If you experience any problem on download, try to download the
corresponding .geojson
file by any other method and save it on your
cache_dir
. Use the option verbose = TRUE
for debugging the API query.
For a complete list of files available check gisco_db.
Author(s)
dieghernan, https://github.com/dieghernan/
Source
https://ec.europa.eu/eurostat/web/gisco/geodata/basic-services
See Also
Other infrastructure:
gisco_get_airports()
,
gisco_get_healthcare()
Examples
edu_BEL <- gisco_get_education(country = "Belgium")
# Plot if downloaded
if (nrow(edu_BEL) > 3) {
library(ggplot2)
ggplot(edu_BEL) +
geom_sf(shape = 21, size = 0.15)
}