Get the boundaries of administrative units
borders_get(voivodeship = NULL, county = NULL, commune = NULL, TERYT = NULL)
voivodeship
: selected voivodeships in Polish. Check voivodeship_names()
functioncounty
: county names in Polish. Check county_names()
functioncommune
: commune names in Polish. Check commune_names()
functionTERYT
: voivodeships, counties or communes (2, 4 or 7 characters)a sf data.frame (EPSG: 2180)
If all arguments are NULL (default), the boundary of Poland will be returned.
## Not run: voivodeship_geom = borders_get(voivodeship = "lubuskie") # 494 KB county_geom = borders_get(county = "Sopot") # 18 KB commune_geom = borders_get(commune = c("Hel", "Krynica Morska")) # 11 KB poland_geom = borders_get() # 1124.3 KB ## End(Not run)
Useful links