get_apicarto_cadastre {happign} | R Documentation |
Apicarto Cadastre
Description
Implementation of the cadastre module from the IGN's apicarto
Usage
get_apicarto_cadastre(x,
type = "parcelle",
source = "PCI",
section = list(NULL),
numero = list(NULL),
code_arr = list(NULL),
code_abs = list(NULL),
code_com = list(NULL),
dTolerance = 0)
Arguments
x |
It can be a shape, insee codes or departement codes :
|
type |
A |
source |
Can be "BDP" for BD Parcellaire or "PCI" for Parcellaire express. See detail for more info. |
section |
A |
numero |
A |
code_arr |
A |
code_abs |
A |
code_com |
A |
dTolerance |
numeric; Complex shape cannot be handle by API; using |
Details
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
Value
Object of class sf
Examples
## Not run:
library(sf)
# 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")
## from insee_code
border <- get_apicarto_cadastre("29158", type = "commune")
borders <- get_apicarto_cadastre(c("29158", "29165"), type = "commune")
# get cadastral parcels
## from shape
parcels <- get_apicarto_cadastre(penmarch, section = "AX")
## from insee code
parcels <- get_apicarto_cadastre("29158")
# Use parameter recycling
## get sections "AX" parcels from multiple insee_code
parcels <- get_apicarto_cadastre(c("29158", "29165"), section = "AX")
## get parcels numbered "0001", "0010" of section "AX" and "BR"
section <- c("AX", "BR")
numero <- rep(c("0001", "0010"), each = 2)
parcels <- get_apicarto_cadastre("29158", section = section, numero = numero)
## generalization with expand.grid
params <- expand.grid(code_insee = c("29158", "29165"),
section = c("AX", "BR"),
numero = c("0001", "0010"),
stringsAsFactors = FALSE)
parcels <- get_apicarto_cadastre(params$code_insee,
section = params$section,
numero = params$numero)
## End(Not run)