Learn R Programming

RCzechia (version 1.4.3)

okresy: Districts (okresy)

Description

Function returning data frame of LAU1 administrative units for the Czech Republic as sf polygons. It takes a single parameter resolution - high res (default) or low res polygons.

Usage

okresy(resolution = "high")

Arguments

resolution

Should the function return high or low resolution shapefile? Allowed values are "high" (default) and "low". This parameter affects only the geometry column, all other fields remain the same.

Format

sf data frame with 77 rows of 6 variables + geometry

KOD_OKRES

Code of the district (okres).

KOD_LAU1

Code of the district as LAU1 unit (okres), primary key. Use this as key to add other data items.

NAZ_LAU1

Name of the district as LAU1 unit (okres).

KOD_KRAJ

Code of the region.

KOD_CZNUTS3

Code of the region as NUTS3 (kraj).

NAZ_CZNUTS3

Name of the region (kraj).

Details

Due to package size constraints the data are stored externally (and a working internet connection is required to use the package). Downloaded size of high resolution shapefile is 6.1 MB (so use with caution, and patience).

Examples

Run this code
# NOT RUN {
library(sf)

hranice <- okresy()
plot(hranice, col = "white", max.plot = 1)

object.size(okresy("low"))
object.size(okresy("high"))

# }

Run the code above in your browser using DataLab