---
title: "Quantificació de l'área residencial inundable amb PR=500 (ODS 11), als municipis de Catalunya amb dades del Servicio de Zonas Inundables Asociadas a Periodos de Retorno del MITECO i dades del SIOSE"
subtitle: "Notes tècniques 9"
author: '[Stefano Sanfilippo](https://linkedin.com/in/stefano-sanfilippo-2311881a2){target="_blank"}'
date: "`r Sys.Date()`"
output:
prettydoc::html_pretty:
theme: cayman
self_contained: no
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
knitr::opts_chunk$set(message = FALSE)
knitr::opts_chunk$set(warning = FALSE)
knitr::opts_chunk$set(cache = FALSE)
```
```{r}
pacman::p_load(
raster, # raster data
terra, # raster data
exactextractr, # Extracció de raster data agregant-les per pol. sf
sf,
tmap,
mapview,
leafsync,
tidyverse,
paletteer,
ggthemes,
classInt)
terraOptions(progress=0) # Per a no veure la barra de progrés
```
```{r include=FALSE}
#=======================================
# EXTRACCIÓN DE DATOS
#=======================================
#===========================
# 1. MUNICIPIOS SF
#===========================
mun_cat <- st_read(
"../repo/divisions-administratives/divisions-administratives-v2r1-municipis-1000000-20240118.shp")
mun_cat <- sf::st_as_sf(mun_cat)
mun_cat <- st_transform(mun_cat, crs = 4326)
```
```{r include=FALSE}
#=================================================================
# EXTRACCIÓ DE LA DADES D'INUNDABILITAT PER PROVÍNCIA DE CATALUNYA
#=================================================================
#https://www.miteco.gob.es/es/cartografia-y-sig/ide/descargas/agua/zi-lamina.html
inunEsp <- st_read("../repo/laminaspb-q500/Q500_2Ciclo_PB_20240912_ETRS89.shp")
inunEsp <- sf::st_as_sf(inunEsp)
inunEsp <- st_transform(inunEsp, crs = 4326)
# Filtrado de los polígonos que coinciden con los de la prov. de Barcelona
cod.prov <- c('08','17','25','43')
sf_use_s2(FALSE)
list_inun <-lapply(cod.prov, function(x) {
a <- st_intersects(inunEsp, mun_cat[mun_cat$CODIPROV== x, ])
b <- inunEsp[lengths(a) > 0,]
})
sf_use_s2(TRUE)
list_inun_simpl <- lapply(list_inun, function(x) {
rmapshaper::ms_simplify(x,keep = 0.1,keep_shapes = TRUE)
})
# lapply(list_inun_simpl, function(x) plot(st_geometry(x)))
```
```{r include=FALSE}
# LECTURA DADES DESCARREGADES DEL SIOSE
#----------------------------------------
cob_cat <- st_read(
"../repo/SIOSE_Catalunya_2014_H31_GPKG/SIOSE_Catalunya_2014_H31.gpkg"
)
# FILTRADO DE LAS ÁREAS RESIDENCIALES (VER MANUAL)
zona_residencial <- cob_cat %>% filter(CODIIGE %in% c(111:113))
# AJUSTE PROYECCION
zona_residencial <- st_transform(zona_residencial, crs = 4326)
#-----------------------------------------------
# Subset poligons segons províncies de Catalunya
#-----------------------------------------------
sf_use_s2(FALSE)
list_resid <-lapply(cod.prov, function(x) {
a <- st_intersects(zona_residencial, mun_cat[mun_cat$CODIPROV== x, ])
b <- zona_residencial[lengths(a) > 0,]
})
sf_use_s2(TRUE)
residencial_list <- lapply(list_resid, function(x) {
x %>%
mutate(Cobertura= case_match(CODIIGE,
111~ "Casc urbà",
112~ "Eixample",
113~ "Discontinu"),
Cobertura= factor(Cobertura,
levels= c(
"Casc urbà",
"Eixample",
"Discontinu")
))
})
# lapply(residencial_list, function(x) plot(st_geometry(x)))
```
## Visualització de les zones inundables a les quatre províncies de Catalunya
```{r}
mapview(residencial_list[[1]],
map.types= c("OpenStreetMap","Esri.WorldImagery"),
zcol= "Cobertura",
col.regions= c("#7c0000", "#bc634f", "#e3b0a3"),
popup = FALSE,
label= FALSE,
legend= TRUE,
layer.name= "Cobertura residencial
Prov. de Barcelona") +
mapView(list_inun_simpl[[1]], color = "#9accff",
popup= FALSE,
label= FALSE,
legend= TRUE,
layer.name= "Superficie inundable
Prov. de Barcelona")
```
Visor del risc d'inundació amb màxim PR (500). Província de Girona
```{r} mapview(residencial_list[[2]], map.types= c("OpenStreetMap","Esri.WorldImagery"), zcol= "Cobertura", col.regions= c("#7c0000", "#bc634f", "#e3b0a3"), popup = FALSE, label= FALSE, legend= TRUE, layer.name= "Cobertura residencialVisor del risc d'inundació amb màxim PR (500). Província de Lleida
```{r} mapview(residencial_list[[3]], map.types= c("OpenStreetMap","Esri.WorldImagery"), zcol= "Cobertura", col.regions= c("#7c0000", "#bc634f", "#e3b0a3"), popup = FALSE, label= FALSE, legend= TRUE, layer.name= "Cobertura residencialVisor del risc d'inundació amb màxim PR (500). Província de Tarragona
```{r} mapview(residencial_list[[4]], map.types= c("OpenStreetMap","Esri.WorldImagery"), zcol= "Cobertura", col.regions= c("#7c0000", "#bc634f", "#e3b0a3"), popup = FALSE, label= FALSE, legend= TRUE, layer.name= "Cobertura residencialMapa de % d'àrea residencial en risc d'inundació amb màxim PR (500), per municipi
```{r ig.height=8,fig.width=8} tm_shape(mun_cat_inund)+ tm_fill(col="pct_inun", id="NOMMUNI", style = "fixed", n=5, breaks = c(0,5,10,20,50,100), palette = c("white","darkblue"), title = "% d'Àrea residencial en risc