-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeoViz2018_R_espace.Rmd
636 lines (504 loc) · 18.2 KB
/
GeoViz2018_R_espace.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
---
title: "Espace et Temps avec R"
subtitle: '1 - Manipulation de données spatiales'
author: "Robin Cura, Hélène Mathian & Lise Vaudor"
date: ["16/10/2018<br/><br /> École Thématique GeoViz 2018 "]
output:
xaringan::moon_reader:
chakra: "www/libs/remark.min.js"
lib_dir: "www/libs"
css: ["www/xaringan-themer.css", "www/style.css"]
nature:
beforeInit: "www/macros.js"
highlightLines: true
editor_options:
chunk_output_type: console
---
```{r xaringan-themer, include = FALSE}
library(tidyverse)
library(sf)
library(xaringan)
library(xaringanthemer) # devtools::install_github("gadenbuie/xaringanthemer")
duo(
primary_color = "#1F4257",
secondary_color = "#F97B64",
header_font_google = google_font("Josefin Sans"),
text_font_google = google_font("Montserrat", "300", "300i"),
code_font_google = google_font("Droid Mono"),
outfile = "www/xaringan-themer.css"
)
library(knitr)
opts_chunk$set(cache = TRUE,
cache.lazy = FALSE)
hook_source <- knitr::knit_hooks$get('source')
knitr::knit_hooks$set(source = function(x, options) {
x <- stringr::str_replace(x, "^[[:blank:]]?([^*].+?)[[:blank:]]*#<<[[:blank:]]*$", "*\\1")
hook_source(x, options)
})
```
## Sommaire
.pull-left[
Charger des données spatiales
- [Les Simples Features et R](#objets-sf)
- [Lecture de fichiers spatiaux](#lecture-sf)
- [Conversion de tableaux en sf](#conversion-spatiale)
Manipuler des données spatiales
- [Éditer des données](#modifier-sf)
- [Systèmes de projections](#projections-sf)
- [Agrégations spatiales](#agregations-sf)
- [Jointures spatiales](#jointures-spatiales)
- [Opérations géométriques](#operations-spatiales)
- [Quelques exemples d'analyse spatiale avec R](#analyse-spatiale)
]
.pull-right[
Exploration visuelle de données spatiales
- [Afficher un objet avec plot](#plot-sf)
- [Exploration rapide avec mapview](#plot-mapview)
- [Exploration thématique avec mapview](#carto-mapview)
Cartographier avec R
- [Cartographier avec ggplot2](#carto-ggplot2)
- [Cartographie statique avec cartography](#carto-cartography)
- [Cartographie dynamique avec leaflet](#carto-leaflet)
]
---
## Les données spatiales dans R
Deux formats de données spatiales coexistent :
- `sp`, le format le plus ancien et répandu
- `sf`, un format plus récent, puissant, mais pas encore universel
.pull-left[
.smaller[
```{r, message = FALSE}
library(rgdal)
library(sp)
iris_Paris_sp <- readOGR("data/ParisIris2017.shp",
stringsAsFactors = FALSE)
```
]
![](www/img/spatial_str_sp.png)
]
.pull-right[
.smaller[
```{r}
library(sf)
iris_Paris_sf <- st_read("data/ParisIris2017.shp",
stringsAsFactors = FALSE)
str(iris_Paris_sf)
```
]
]
---
## Les données spatiales dans R
.pull-left[
.smaller[
```{r}
plot(iris_Paris_sp)
```
]
]
.pull-right[
.smaller[
```{r}
plot(iris_Paris_sf)
```
]
]
---
## Les données spatiales dans R
On va se contenter de mobiliser le *package* `sf`, qui permet une manipulation d'objets simples, semblables à des `data.frame`/`tibbles`.
**N.B.** : Pour une très grande majorité d'opérations, `sf` suffit. Il peut toutefois être nécessaire de passer de `sf` à `sp` dès lors qu'on souhaite utiliser des fonctions spatiales avancées, par exemple pour mobiliser des méthodes d'analyse spatiale.
---
name: objets-sf
## `sf` : Les *Simples Features*
.small[
.center[
![:scale 60%](www/img/sf-classes.png)
R. Lovelace, J. Nowosad & J. Muenchow (2018), Geocomputation with R - https://geocompr.robinlovelace.net/
]
]
---
## `sf` : Structure d'un objet `sf`
.small[
```{r}
iris_Paris_sf
```
]
- $\rightarrow$ Un `data.frame`, doté d'une colonne de `geometry` et d'un **système de coordonnées/projection**.
```{r, echo = FALSE}
rm(iris_Paris_sf, iris_Paris_sp)
```
---
name: lecture-sf
## Lecture de fichiers géographiques
#### Toutes les fonctions de `sf` s'inspirent de la syntaxe des fonctions `PostGIS` : `st_OPERATION` :
- Lecture d'un shapefile
.small[
```{r}
irisParis <- st_read(dsn = "data/ParisIris2017.shp",
stringsAsFactors = FALSE) # Comme pour la lecture des data.frame
```
]
---
name: projections-sf
## Projections / transformations
#### Comme dans tout SIG, le système de projection (`st_crs`) est récuperé à la lecture d'un objet :
.small[
```{r}
st_crs(irisParis)
```
]
Ici, le "code de projection" est bien reconnu, mais le code EPSG n'est pas renseigné. On va le spécifier pour clarifier (même si ce n'est pas utile) :
.small[
```{r}
irisParis <- irisParis %>%
st_set_crs(2154) # SRID/EPSG du Lambert 93
head(irisParis)
```
]
---
## Projections / transformations
#### On peut re-projeter un objet `sf` avec la fonction `st_transform(SRID/CRS)` :
.pull-left[
.small[
```{r}
irisParis %>%
select(geometry) %>% # Lambert 93
plot()
```
]
]
.pull-right[
.small[
```{r}
GallPeters <- "+proj=cea +lon_0=0 +lat_ts=45 \
+x_0=0 +y_0=0 +ellps=WGS84 +units=m +no_defs"
irisParis %>%
select(geometry) %>%
st_transform(crs = GallPeters) %>% #<<
plot()
```
]
]
---
name: plot-sf
## Visualisation exploratoire : `plot()`
On peut utiliser la fonction de base `plot()`, qui affiche alors l'ensemble des attributs du jeu de données :
.small[
```{r, fig.width = 12, fig.height = 5}
plot(irisParis)
```
]
---
## Visualisation exploratoire : `plot()`
Pour "cartographier" le contenu d'une seule variable :
.small[
```{r, fig.width = 12, fig.height = 5}
plot(irisParis["NOM_C"])
```
]
---
name: plot-mapview
## Visualisation exploratoire : `mapview`
Le *package* `mapview` permet de mener rapidement une exploration des données spatiales et attributaires :
.small[
```{r, message = FALSE, fig.width=10, fig.height = 5}
library(mapview) # install.packages("mapview")
mapview(irisParis)
```
]
---
## Visualisation exploratoire : `mapview`
Le *package* `mapview` permet de mener rapidement une exploration des données spatiales et attributaires.
On peut aussi spécifier un attribut à observer avec l'instruction `zcol` :
.small[
```{r, message = FALSE, fig.width=10, fig.height = 5}
mapview(irisParis, zcol = "NOM_C")
```
]
---
name: modifier-sf
## Opérations attributaires
Comme l'objet `sf` est fondamentalement un `data.frame`, on peut lui appliquer les manipulations vues hier : filtrage (`filter`), réductions de variables (`select`), renommage de variables (`rename`) et création/modification de variables (`mutate`) :
.small[
```{r, fig.width=11, fig.height = 3.5}
irisParis %>%
select(INSEE, CODE_) %>% # La sélection de la colonne `geometry` est implicite #<<
mutate(ARRONDISSEMENT = as.numeric(INSEE) - 100) %>% #<<
filter(ARRONDISSEMENT >= 75001, ARRONDISSEMENT <= 75007) %>%#<<
mapview(zcol = "ARRONDISSEMENT")
```
]
---
name: agregations-sf
## Agrégations
Comme avec un `tibble`, on peut réaliser des opérations d'agrégation.
La géométrie est alors, elle-aussi, agrégée en conséquence :
.small[
```{r}
arrondissements_Paris <- irisParis %>%
group_by(INSEE) %>%
summarise()
plot(arrondissements_Paris)
```
]
---
## Jointures attributaires
Comme pour tous les `data.frame`, on peut réaliser des jointures attributaires :
.smaller[
```{r}
df_dmr <- readRDS("dans_ma_rue_clean.RDS")
joinData <- df_dmr %>%
group_by(CODE_POSTAL, ANNEE_DECLARATION) %>%
summarise(NbIncidents = n()) %>%
ungroup()
donnees_incidents <- arrondissements_Paris %>%
mutate(CODGEO = as.character(as.numeric(INSEE) - 100)) %>%
left_join(joinData, by = c("CODGEO" = "CODE_POSTAL")) #<<
incidents2015 <- filter(donnees_incidents, ANNEE_DECLARATION == 2015)
incidents2017 <- filter(donnees_incidents, ANNEE_DECLARATION == 2017)
commonBreaks <- joinData %>%
filter(ANNEE_DECLARATION %in% c(2015, 2017)) %>%
pull(NbIncidents) %>%
quantile(probs = seq(from = 0, to = 1, by = 0.1))
```
.pull-left[
```{r, fig.height = 3.5}
plot(incidents2015[,"NbIncidents"],
main = "Incidents 2015",
breaks = commonBreaks)
```
]
.pull-right[
```{r, fig.height = 3.5}
plot(incidents2017[,"NbIncidents"],
main = "Incidents 2017",
breaks = commonBreaks)
```
]
]
---
name: conversion-spatiale
## Conversion en `sf` et jointures spatiales
Les objets `sf` sont des objets spatiaux, on peut donc aussi effectuer des jointures spatiales (entre deux objets `sf`) :
- Conversion du jeu de données "Dans ma Rue" en objet spatial avec la fonction `st_as_sf` :
.small[
```{r}
dmr_spatial <- df_dmr %>%
filter(ANNEE_DECLARATION %in% c(2015, 2017)) %>%
st_as_sf(coords = c("Long", "Lat"), crs = 4326) %>% #<<
st_transform(2154) # Pour une opération géométrique, les objets doivent avoir le même SRID
```
]
---
name: jointures-spatiales
## Jointures spatiales
- Jointure spatiale pour récuperer les IRIS contenant les points :
.small[
```{r}
dmr_augmente <- dmr_spatial %>%
st_join(irisParis %>% select(INSEE), join = st_within) #<<
```
.pull-left[
```{r blob, eval = FALSE}
dmr_augmente %>%
group_by(INSEE, ANNEE_DECLARATION) %>%
summarise(NbIncidents = n()) %>%
ungroup() %>%
head()
```
]
]
.smaller[
.pull-right[
```{r, eval = TRUE, echo = FALSE, ref.label="blob"}
```
]
]
---
## Opérations spatiales
name: operations-spatiales
`sf` permet de réaliser la quasi-totalité des opérations attendues d'un SIG, avec des fonctions dédiées reprenant le vocabulaire classique (inspiré par `PostGIS`) :
`st_agr`, `st_area`, `st_bbox`, `st_bind_cols`, `st_boundary`, `st_buffer`, `st_cast`, `st_centroid`, `st_combine`, `st_contains`, `st_contains_properly`, `st_convex_hull`, `st_covered_by`, `st_covers`, `st_crop`, `st_crosses`, `st_difference`, `st_disjoint`, `st_distance`, `st_equals`, `st_equals_exact`, `st_graticule`, `st_interpolate_aw`, `st_intersection`, `st_intersects`, `st_is_simple`, `st_is_valid`, `st_is_within_distance`, `st_jitter`, `st_join`, `st_layers`, `st_length`, `st_line_merge`, `st_line_sample`, `st_make_grid`, `st_overlaps`, `st_point_on_surface`, `st_polygonize`, `st_relate`, `st_sample`, `st_segmentize`, `st_simplify`, `st_snap`, `st_sym_difference`, `st_touches`, `st_transform`, `st_triangulate`, `st_union`, `st_viewport`, `st_voronoi`, `st_within`, `st_wrap_dateline`, `st_write`, `st_write_db`, `st_zm`, `write_sf`
Voir les exemples illustrées dans les *vignettes* du *package* `sf` : [Manipulating Simple Feature Geometries](https://cran.r-project.org/web/packages/sf/vignettes/sf3.html) et
[Manipulating Simple Features](https://cran.r-project.org/web/packages/sf/vignettes/sf4.html)
---
## Opérations spatiales : un exemple de traitement
-> On peut chercher à créer une carte des densités d'incidents déclarés par IRIS, potentiellement selon les années :
.small[
```{r}
nbIncidentsIris <- dmr_spatial %>%
st_join(irisParis %>% select(INSEE), join = st_within) %>%
st_set_geometry(NULL) %>% # On n'a plus besoin que ce soit un objet spatial
group_by(INSEE, ANNEE_DECLARATION) %>%
summarise(NbIncidents = n()) %>% #<<
ungroup()
irisParis_Incidents <- irisParis %>%
mutate(surface = st_area(.)) %>% #<<
left_join(nbIncidentsIris, by = "INSEE")
densite_incidents <- irisParis_Incidents %>%
mutate(densiteIncidents = NbIncidents / (surface / 1E6)) %>% # Pour avoir une densité / km² #<<
select(INSEE, CODE_, ANNEE_DECLARATION, NbIncidents, densiteIncidents)
# Les densités sont exprimées avec des "unités", qui complexifient le traitement.
# On les enlève donc :
densite_incidents <- densite_incidents %>%
mutate(densiteIncidents = units::drop_units(densiteIncidents))
```
]
---
name: carto-mapview
## Cartographie exploratoire : `mapview`
.small[
```{r, eval = FALSE}
densite2015 <- filter(densite_incidents, ANNEE_DECLARATION == 2015)
densite2017 <- filter(densite_incidents, ANNEE_DECLARATION == 2017)
map2015 <- mapview(densite2015, zcol = "densiteIncidents", legend = TRUE)
map2017 <- mapview(densite2017, zcol = "densiteIncidents", legend = TRUE)
latticeView(map2013, map2017, ncol = 2)
```
]
---
## Cartographie exploratoire : `mapview`
.small[
```{r, eval = TRUE, echo = FALSE}
densite2015 <- filter(densite_incidents, ANNEE_DECLARATION == 2015)
densite2017 <- filter(densite_incidents, ANNEE_DECLARATION == 2017)
map2015 <- mapview(densite2015, zcol = "densiteIncidents", legend = TRUE)
map2017 <- mapview(densite2017, zcol = "densiteIncidents", legend = TRUE)
latticeView(map2015, map2017, ncol = 2)
```
]
---
name: carto-ggplot2
## Cartographie statique : `ggplot2`
On peut bien sûr afficher ces éléments avec le *package* `ggplot2`, en faisant appel à la géométrie dédiée aux objets de type `sf` : `geom_sf`
.small[
```{r, fig.width = 12, fig.height = 4.5}
ggplot(densite_incidents) +
geom_sf(data = densite_incidents, aes(fill = densiteIncidents), lwd = 0) +
# On est obligé de remettre la couche sf en data #<<
facet_wrap(~ANNEE_DECLARATION) +
scale_fill_viridis_c(name = "Incidents / Km²") +
guides(fill = guide_colourbar(title.position = "top")) +
coord_sf() + # On s'assure que les coordonnées du graphique respectent le CRS #<<
theme_minimal() +
theme(legend.position = "bottom", legend.key.width = unit(2,"cm"))
```
]
---
## Cartographie statique : `ggplot2`
- Certains *packages* (`ggsn`, `ggmap`) proposent des foncitonnalités permettant d'améliorer le rendu cartographique (échelles graphiques, flèches d'orientations, fonds de cartes...) ;
- mais `ggplot` est avant tout un outil de visualisation **générique** :
#### - pour créer des cartographies de qualité, mieux vaut se tourner vers des *packages* dédiés : `tmap` (qu'on ne verra pas ici) et `cartography`
---
name: carto-cartography
## Cartographie statique : `cartography`
#### Exemple d'une carte en symboles proportionnels
.small[
```{r, fig.show="hold", eval = FALSE}
library(cartography)
# On commence par afficher un fond de carte
par(mar=c(0,0,0,0))
plot(st_geometry(arrondissements_Paris),
col = "#1F4257",
border = "#B6C1C8",
bg = "#708694",
lwd = 2)
# On ajoute des symboles proportionnels pour les incidents
propSymbolsLayer(x = densite_incidents %>% filter(ANNEE_DECLARATION == 2017),
var = "NbIncidents",
col = "#F97B64",
inches = 0.1,
legend.title.txt = "Nombre de déclarations par IRIS en 2017")
# On ajoute les labels des arrondissements
labelLayer(x = arrondissements_Paris %>% mutate(CP = as.numeric(INSEE) - 100),
txt = "CP",
col = "#B6C1C8",
bg = "#1F4257",
halo = TRUE,
overlap = FALSE, show.lines = FALSE)
```
]
---
## Cartographie statique : `cartography`
#### Exemple d'une carte en symboles proportionnels
.center[
.small[
```{r, fig.show="hold", eval = TRUE, echo = FALSE, fig.height = 5.5}
library(cartography)
# On commence par afficher un fond de carte
par(mar=c(0,0,0,0))
plot(st_geometry(arrondissements_Paris),
col = "#1F4257",
border = "#B6C1C8",
bg = "#708694",
lwd = 2)
# On ajoute des symboles proportionnels pour les incidents
propSymbolsLayer(x = densite_incidents %>% filter(ANNEE_DECLARATION == 2017),
var = "NbIncidents",
col = "#F97B64",
inches = 0.1,
legend.title.txt = "Nombre de déclarations par IRIS en 2017")
# On ajoute les labels des arrondissements
labelLayer(x = arrondissements_Paris %>% mutate(CP = as.numeric(INSEE) - 100),
txt = "CP",
col = "#B6C1C8",
bg = "#1F4257",
halo = TRUE,
overlap = FALSE, show.lines = FALSE)
```
]
]
---
name: carto-leaflet
## Cartographie dynamique : `leaflet`
#### - Pour créer des cartes "dynamiques", en plus de `mapview` (qui sert surtout à l'exploration de données), on peut utiliser le *package* `leaflet`, qui génère une carte en HTML+JavaScript que l'on pourra placer sur une page web quelconque :
.small[
```{r, eval = FALSE, echo = TRUE}
library(leaflet)
densite_incidents2017 <- densite_incidents %>%
filter(ANNEE_DECLARATION == 2017) %>%
st_transform(4326) # Leaflet requiert une couche en WGS84
seuils <- quantile(densite_incidents2017$densiteIncidents,
probs = seq(from = 0, to = 1, by = 0.2))
colorPalette <- colorBin("YlOrRd",
domain = densite_incidents2017$densiteIncidents,
bins = seuils)
infosPopup <- sprintf("<strong>%s</strong><br/>%s incidents (%.1f / km²)",
densite_incidents2017$CODE_,
densite_incidents2017$NbIncidents,
densite_incidents2017$densiteIncidents) %>% lapply(htmltools::HTML)
leaflet(data = densite_incidents2017) %>%
addProviderTiles(providers$CartoDB.DarkMatterNoLabels) %>%
addPolygons(
fillColor = ~colorPalette(densiteIncidents), fillOpacity = 0.7,
color = "white", weight = .5, opacity = 1, dashArray = "3",
label = infosPopup) %>%
addLegend(pal = colorPalette, values = ~densiteIncidents, opacity = 0.7,
title = "Densités d'incidents<br/>[incident/km²]", position = "topright")
```
]
---
## Cartographie dynamique : `leaflet`
#### - Pour créer des cartes "dynamiques", en plus de `mapview` (qui sert surtout à l'exploration de données), on peut utiliser le *package* `leaflet`, qui génère une carte en HTML+JavaScript que l'on pourra placer sur une page web quelconque :
.small[
```{r, eval = TRUE, echo = FALSE, message=FALSE, warning=FALSE, fig.width = 10, fig.height = 5.5}
library(leaflet)
densite_incidents2017 <- densite_incidents %>%
filter(ANNEE_DECLARATION == 2017) %>%
st_transform(4326) # Leaflet requiert une couche en WGS84
seuils <- quantile(densite_incidents2017$densiteIncidents, probs = seq(from = 0, to = 1, by = 0.2))
colorPalette <- colorBin("YlOrRd", domain = densite_incidents2017$densiteIncidents, bins = seuils)
infosPopup <- sprintf("<strong>%s</strong><br/>%s incidents (%.1f / km²)",
densite_incidents2017$CODE_,
densite_incidents2017$NbIncidents,
densite_incidents2017$densiteIncidents) %>% lapply(htmltools::HTML)
leaflet(data = densite_incidents2017) %>%
addProviderTiles(providers$CartoDB.DarkMatterNoLabels) %>%
addPolygons(
fillColor = ~colorPalette(densiteIncidents), fillOpacity = 0.7,
color = "white", weight = .5, opacity = 1, dashArray = "3",
label = infosPopup) %>%
addLegend(pal = colorPalette, values = ~densiteIncidents, opacity = 0.7,
title = "Densités d'incidents<br/>[incident/km²]",
position = "topright")
```
]