We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
En la ejecución del siguiente código:
municipios <- esp_get_munic_siane(epsg = 4326, moveCAN = FALSE, resolution = 10) nrow(municipios)
El resultado son 8.209 registros.
municipios <- municipios %>% filter(!is.na(name)) nrow(municipios)
Tras el filtrado, aparecen 8.128 (en lugar de 8.131).
En el resultado no aparecen 3 municipios:
CODIGO_INE NOMBRE nombre_provincia 34242 Villodrigo Palencia 39101 Valle de Villaverde Cantabria 48074 Urduña/Orduña Bizkaia
No estoy seguro del sitio correcto para abrir el issue porque no sé si es un problema del dato en origen del IGN.
¡Muchas gracias por este pedazo de librería!
The text was updated successfully, but these errors were encountered:
Hola @perezcalderon
Por lo que veo es un problema del IGN. Para resolution = 10 parece que no están incluidos, sin embargo en resolution = 3 si que aparecen:
resolution = 10
resolution = 3
library(mapSpain) library(dplyr) municipios <- esp_get_munic_siane(epsg = 4326, moveCAN = FALSE, resolution = 3) # Aqui si que está municipios %>% filter(LAU_CODE %in% c("34242", "39101","48074")) #> Simple feature collection with 3 features and 7 fields #> Geometry type: MULTIPOLYGON #> Dimension: XY #> Bounding box: xmin: -4.111872 ymin: 42.13155 xmax: -2.955765 ymax: 43.26689 #> Geodetic CRS: WGS 84 #> codauto ine.ccaa.name cpro ine.prov.name cmun name LAU_CODE #> 1 06 Cantabria 39 Cantabria 101 Valle de Villaverde 39101 #> 2 07 Castilla y León 34 Palencia 242 Villodrigo 34242 #> 3 16 País Vasco 48 Bizkaia 074 Urduña/Orduña 48074 #> geometry #> 1 MULTIPOLYGON (((-3.285106 4... #> 2 MULTIPOLYGON (((-4.076154 4... #> 3 MULTIPOLYGON (((-3.049804 4...
Created on 2023-07-21 with reprex v2.0.2
Sorry, something went wrong.
No branches or pull requests
En la ejecución del siguiente código:
El resultado son 8.209 registros.
Tras el filtrado, aparecen 8.128 (en lugar de 8.131).
En el resultado no aparecen 3 municipios:
No estoy seguro del sitio correcto para abrir el issue porque no sé si es un problema del dato en origen del IGN.
¡Muchas gracias por este pedazo de librería!
The text was updated successfully, but these errors were encountered: