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)

Arguments

layer

identification of data to extract as character, see details. Default value is "stát"

WGS84

convert data to WGS-84 coordinate system? Default FALSE.

Value

data.frame with spatail objects (sf) of the specified layer

Details

The layer can have values from following set, the value in brackets is alias to full layer name:

  1. "KATUZE_P" ("katastralni uzemi")

  2. "OBCE_P" ("obce")

  3. "OKRESY_P" ("okresy")

  4. "ORP_P" ("orp")

  5. "POU_P" ("pou")

  6. "PRARES_P"

  7. "REGION_P" ("regiony")

  8. "STATY_P" ("stat")

  9. "STU_P" ("stavebni úrady")

  10. "VO_P" ("volebni okrsky")

  11. "VUSC_P" ("kraje")

So the codes layer = "OKRESY_P" and layer = "okresy" are equal.

Information about dataset

More detailed information about data can be found at the provider's website http://atom.cuzk.cz/.

Examples

if (FALSE) {
    obce_CR <- load_RUIAN_state(layer = "obce")
}