Extract specific layer, in form of spatial data, from RUIAN for whole Czech Republic. The minor issue with these data is the size, the datasets that needs to be downloaded is roughly 190 MB.
load_RUIAN_state(layer = "stat", WGS84 = FALSE)
identification of data to extract as character, see details.
Default value is "stát"
convert data to WGS-84 coordinate system? Default FALSE
.
data.frame
with spatail objects (sf
) of the specified layer
The layer
can have values from following set, the value in brackets is alias to full layer
name:
"KATUZE_P"
("katastralni uzemi"
)
"OBCE_P"
("obce"
)
"OKRESY_P"
("okresy"
)
"ORP_P"
("orp"
)
"POU_P"
("pou"
)
"PRARES_P"
"REGION_P"
("regiony"
)
"STATY_P"
("stat"
)
"STU_P"
("stavebni úrady"
)
"VO_P"
("volebni okrsky"
)
"VUSC_P"
("kraje"
)
So the codes layer = "OKRESY_P"
and layer = "okresy"
are equal.
More detailed information about data can be found at the provider's website http://atom.cuzk.cz/.
if (FALSE) {
obce_CR <- load_RUIAN_state(layer = "obce")
}