View source: R/get_apicarto_cadastre.R
get_apicarto_cadastre | R Documentation |
Implementation of the cadastre module from the IGN's apicarto
get_apicarto_cadastre(x,
type = "commune",
code_com = NULL,
section = NULL,
numero = NULL,
code_arr = NULL,
code_abs = NULL,
dTolerance = 0L,
source = "pci",
progress = TRUE)
x |
It can be a shape, insee codes or departement codes :
|
type |
A |
code_com |
A |
section |
A |
numero |
A |
code_arr |
A |
code_abs |
A |
dTolerance |
numeric; Complex shape cannot be handle by API; using |
source |
Can be "bdp" for BD Parcellaire or "pci" for Parcellaire express. See detail for more info. |
progress |
Display a progress bar? Use TRUE to turn on a basic progress
bar, use a string to give it a name. See |
x
, section
, numero
, code_arr
, code_abs
, code_com
can take vector of character.
In this case vector recycling is done. See the example section below.
source
: BD Parcellaire is a discontinued product. Its use is no longer
recommended because it is no longer updated. The use of PCI Express is
strongly recommended and will become mandatory. More information on the
comparison of this two products can be found
here
Object of class sf
## Not run:
library(sf)
library(tmap)
# shape from the town of penmarch
penmarch <- read_sf(system.file("extdata/penmarch.shp", package = "happign"))
# get commune borders
## from shape
penmarch_borders <- get_apicarto_cadastre(penmarch, type = "commune")
qtm(penmarch_borders, fill = NA)+qtm(penmarch)
## from insee_code
border <- get_apicarto_cadastre("29158", type = "commune")
borders <- get_apicarto_cadastre(c("29158", "29135"), type = "commune")
qtm(borders, fill="nom_com")
# get cadastral parcels
## from shape
parcels <- get_apicarto_cadastre(penmarch, section = "AW", type = "parcelle")
## from insee code
parcels <- get_apicarto_cadastre("29158", type = "parcelle")
# Use parameter recycling
## get sections "AX" parcels from multiple insee_code
parcels <- get_apicarto_cadastre(c("29158", "29135"), section = "AW", type = "parcelle")
qtm(penmarch_borders, fill = NA)+qtm(parcels)
## get parcels numbered "0001", "0010" of section "AW" and "BR"
section <- c("AW", "BR")
numero <- rep(c("0001", "0010"), each = 2)
parcels <- get_apicarto_cadastre("29158", section = section, numero = numero, type = "parcelle")
qtm(penmarch_borders, fill = NA)+qtm(parcels)
## generalization with expand.grid
params <- expand.grid(code_insee = c("29158", "29135"),
section = c("AW", "BR"),
numero = c("0001", "0010"),
stringsAsFactors = FALSE)
parcels <- get_apicarto_cadastre(params$code_insee,
section = params$section,
numero = params$numero,
type = "parcelle")
qtm(penmarch_borders, fill = NA)+qtm(parcels$geometry)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.