Implementation of the OVCCallejero service ConsultaMunicipioCodigos.
Return the names and codes of a municipality. Returns both the codes as per the Cadastre and as per the INE (National Statistics Institute).
Arguments
- cpro
The code of a province, as provided by
catr_ovc_get_cod_provinces()
.- cmun
Code of a municipality, as recorded on the Spanish Cadastre.
- cmun_ine
Code of a municipality, as recorded on National Statistics Institute. See INE: List of municipalities
- verbose
Logical, displays information. Useful for debugging, default is
FALSE
.
Value
A tibble
. See Details
Details
Parameter cpro
is mandatory. Either cmun
or cmun_ine
should be
provided.
On a successful query, the function returns a tibble
with one row including the following columns:
munic
: Name of the municipality as per the Cadastre.catr_to
: Cadastral territorial office code.catr_munic
: Municipality code as recorded on the Cadastre.catrcode
: Full Cadastral code for the municipality.cpro
: Province code as per the INE.catr_munic
: Municipality code as per the INE.catrcode
: Full INE code for the municipality.Rest of fields: Check the API Docs.
See also
mapSpain::esp_get_munic()
to get shapes of municipalities,
including the INE code.
OVCCoordenadas API:
catr_ovc_get_cod_provinces()
Other search:
catr_atom_search_munic()
,
catr_get_code_from_coords()
,
catr_ovc_get_cod_provinces()
Examples
# \donttest{
# Get municipality by cadastal code
ab <- catr_ovc_get_cod_munic(2, 900)
ab
#> # A tibble: 1 × 12
#> munic catr_to catr_munic catrcode cpro cmun inecode nm cd cmc cp
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 ALBAC… 02 900 02900 02 003 02003 ALBA… 2 900 2
#> # ℹ 1 more variable: cm <chr>
# Same query using the INE code
ab2 <- catr_ovc_get_cod_munic(2, cmun_ine = 3)
ab2
#> # A tibble: 1 × 12
#> munic catr_to catr_munic catrcode cpro cmun inecode nm cd cmc cp
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 ALBAC… 02 900 02900 02 003 02003 ALBA… 2 900 2
#> # ℹ 1 more variable: cm <chr>
# }