Skip to content

Instantly share code, notes, and snippets.

@mhermans
Created January 9, 2019 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhermans/4e1e09b21b0fe6d9ceae50f80dab7ed9 to your computer and use it in GitHub Desktop.
Save mhermans/4e1e09b21b0fe6d9ceae50f80dab7ed9 to your computer and use it in GitHub Desktop.
EU map
library(eurostat)
eu_nuts0 <- eurostat::get_eurostat_geospatial(resolution = "60", nuts_level = "0")
ggplot(eu_nuts0) + geom_sf()
qtm(eu_nuts0)
ggplot(eu_nuts0, aes(fill = id)) +
geom_sf() +
coord_sf(xlim = c(2500000, 6000000), ylim =c(1500000, 5300000), crs = 3035)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment