loadCoordDE {mapping} | R Documentation |
Get Germany coordinates
Description
Loads and returns names, id, and coordinates for Germany statistical unit, to use with mapping
functions and other "map" functions that accept an sf
object.
Usage
loadCoordDE(unit = c("state", "district", "municipal", "municipality"),
unit_subset = NULL, matchWith = NULL, dir = NULL,
use_cache = TRUE, use_internet = TRUE, crs = NULL)
Arguments
unit |
the type of Italian statistical unit to link |
unit_subset |
character vector of unit names to extract |
matchWith |
the type of id |
dir |
local directory in which shape files are stored |
use_cache |
a logical value indicating whether to use the cache |
use_internet |
a logical value indicating wheter the coordinates are downloaded from https://github.com/mappinguniverse/geospatial. If |
crs |
coordinate reference system. Look at |
Details
Coordinates are download from the Github repo https://github.com/mappinguniverse/geospatial from DE folder https://github.com/mappinguniverse/geospatial/tree/master/DE.
If unit
is not specified, state borders are loaded.
Value
A data.frame object with column indicating names, id, and the geometry to map.
Author(s)
Alessio Serafini
References
https://github.com/mappinguniverse/geospatial
See Also
loadCoordEU
, loadCoordWR
, loadCoordUS
, loadCoordUK
Examples
DE_coords = loadCoordDE(unit = "state")
str(DE_coords)
## Load subset
coords_de <- loadCoordDE(unit = "district",
unit_subset = "bayern",
matchWith = "state")