catrnav_atom_get_buildings | R Documentation |
Get the spatial data of all the cadastral buildings belonging to a single municipality using the INSPIRE ATOM service.
catrnav_atom_get_buildings(
munic,
cache = TRUE,
update_cache = FALSE,
cache_dir = NULL,
verbose = FALSE
)
munic |
Municipality to extract, It can be a part of a string or the cadastral code. See catrnav_atom_get_buildings_db_all. |
cache |
A logical whether to do caching. Default is |
update_cache |
A logical whether to update cache. Default is |
cache_dir |
A path to a cache directory. On missing value the function
would store the cached files on a temporary dir (See |
verbose |
Logical, displays information. Useful for debugging,
default is |
A sf
object.
Other ATOM:
catrnav_atom_get_address()
,
catrnav_atom_get_address_db_all()
,
catrnav_atom_get_buildings_db_all()
,
catrnav_atom_get_parcels()
,
catrnav_atom_get_parcels_db_all()
Other buildings:
catrnav_atom_get_buildings_db_all()
s <- catrnav_atom_get_buildings("Iruña")
library(ggplot2)
ggplot(s) +
geom_sf() +
labs(
title = "Buildings",
subtitle = "Pamplona / Iruña"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.