Commit 2cae20fb authored by Maxime Modjeska's avatar Maxime Modjeska
Browse files

MAJ cartes Pauline et Fred

Showing with 78 additions and 4 deletions
+78 -4
...@@ -113,7 +113,7 @@ map_so_ii(dataset, ...@@ -113,7 +113,7 @@ map_so_ii(dataset,
path = file.path(output_path, "entretiens_preliminaires.pdf")) path = file.path(output_path, "entretiens_preliminaires.pdf"))
``` ```
```{r } ```{r aleas_roi}
# traitement des données # traitement des données
......
...@@ -8,7 +8,7 @@ output_path = "data-common/figure/so-ii/map/" ...@@ -8,7 +8,7 @@ output_path = "data-common/figure/so-ii/map/"
crs = "WGS84" crs = "WGS84"
# Récupération des données (à faire une fois) # Récupération des données (à faire une fois)
rex2020 = rio::import("data-common/table/so-ii/rex-2020-09-19.ods", which = 1) rex2020 = rio::import("data-common/table/so-ii/rex-2020-09-19-enquete.ods", which = 1)
``` ```
...@@ -64,7 +64,7 @@ dataset_legend = list( ...@@ -64,7 +64,7 @@ dataset_legend = list(
map_so_ii(dataset, map_so_ii(dataset,
dataset_legend, dataset_legend,
theme = "catnat", theme = "catnat",
theme_legend = TRUE, #theme_legend = TRUE,
year = "2020", year = "2020",
pch = pch, pch = pch,
bg = bg, bg = bg,
...@@ -124,10 +124,84 @@ dataset_legend = list( ...@@ -124,10 +124,84 @@ dataset_legend = list(
map_so_ii(dataset, map_so_ii(dataset,
dataset_legend, dataset_legend,
theme = "catnat", theme = "catnat",
theme_legend = TRUE, #theme_legend = TRUE,
year = "2020", year = "2020",
pch = pch, pch = pch,
bg = bg, bg = bg,
col = col, col = col,
path = file.path(output_path, "rex-2020-09-19-entretien.pdf")) path = file.path(output_path, "rex-2020-09-19-entretien.pdf"))
```
```{r alea}
# traitement des données
## sous-ensemble de données
dataset = rex2020[rex2020[["statut_rencontre"]] == "realise" & !is.na(rex2020[["debordement"]]),c(
"latitude",
"longitude",
"statut",
"activite",
"debordement",
"ruissellement"
)]
dataset[["multiple"]] = apply(dataset[,c("debordement","ruissellement")],
1,
function(x)length(grep("TRUE",x)))
## géolocalisation des données
dataset = dataset[!is.na(dataset[["latitude"]]), ]
dataset = sf::st_as_sf(dataset, coords = c("longitude", "latitude"), crs = crs)
## mise en forme de la visualisation des données
### symboles et couleur des symboles
pch_agri = 24
pch_hab = 21
pch = rep(NA, nrow(dataset))
pch[dataset[["statut"]] == "agriculteur"] = pch_agri
pch[dataset[["statut"]] == "habitant"] = pch_hab
bg = rep(NA, nrow(dataset))
bg_ruissellement = "red"
bg_debordement = "blue"
bg_multiple = "purple"
bg[dataset[["ruissellement"]] == "TRUE"] = bg_ruissellement
bg[dataset[["debordement"]] == "TRUE"] = bg_debordement
bg[dataset[["multiple"]] > 1] = bg_multiple
col = rep("black", nrow(dataset))
### synthèse des données
total_ruissellement = length(dataset[["ruissellement"]][dataset[["ruissellement"]] == "TRUE"])
total_debordement = length(dataset[["debordement"]][dataset[["debordement"]] == "TRUE"])
total_multiple = length(dataset[["multiple"]][dataset[["multiple"]] > 1])
## Légende Carte en cours
dataset_legend = list(
title = "Types d'aléas",
legend = c(
sprintf("Ruissellement (%s)",total_ruissellement),
sprintf("Débordement (%s)",total_debordement),
sprintf("Multiple (%s)",total_multiple)
),
pch = 22,
pt.bg = c(
"red",
"blue",
"purple"
),
pt.cex = 1.4
)
# Carte
map_so_ii(dataset,
dataset_legend,
theme = "catnat",
#theme_legend = TRUE,
year = "2020",
pch = pch,
bg = bg,
col = col,
path = file.path(output_path, "rex-2020-09-19-alea.pdf"))
``` ```
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment