Skip to contents

Function returning one of the 8 levels of Geomorphological division of the Czech Republic, as specified by the obligatory parameter level.

Usage

geomorfo(level)

Source

CENIA / INSPIRE, via Mgr. Vojtěch Blažek, Ph.D. https://www.arcgis.com/home/item.html?id=25813686a8564b0bbcdc951a5573cfa4

Arguments

level

level of geomorphological division. One of system, subsystem, provincie, subprovincie, oblast, celek, podcelek, okrsek.

Value

sf data frame with geomorfo division names & codes + geometry; namely:

system

name of the system; 2 rows

subsystem

names of the system, subsystem + kod; 4 rows

provincie

name of the province; 4 rows

subprovincie

name of the subprovince + kod; 10 rows

oblast

name of the subprovince, oblast + kod; 27 rows

celek

name of the subprovince, oblast, celek + kod; 93 rows

podcelek

name of the subprovince, oblast, celek, podcelek + kod; 253 rows

okrsek

name of the subprovince, oblast, celek, podcelek, okrsek + kod; 933 rows

Details

Due to package size constraints the data are stored externally (and a working internet connection is required to use the package).

The data is current to 2014 (3rd edition of Demek & Mackovčin's Zeměpisný lexikon ČR. Hory a nížiny.) Downloaded size is < 1 MB for any of the hierarchy levels.

Examples


# \donttest{
library(sf)

soustavy <- RCzechia::geomorfo("subprovincie")
#> RCzechia: using dataset stored locally in ~/.rczechia

plot(soustavy["kod"])


# }