-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.R
245 lines (196 loc) · 6.5 KB
/
script.R
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
# paquetes ---------------------------------------------------------------
library(tidyterra)
library(terra)
library(glue)
library(biscale) # https://chris-prener.github.io/biscale/
library(showtext)
library(ggtext)
library(patchwork)
library(tidyverse)
# https://www.datawim.com/post/creating-professional-bivariate-maps-in-r/
# colores ----------------------------------------------------------------
# paleta de colores bivariada y colores de texto
# https://chris-prener.github.io/biscale/articles/bivariate_palettes.html
paleta <- "PinkGrn"
col <- biscale::bi_pal(paleta, preview = FALSE)
c1 <- col[7]
c2 <- col[3]
c3 <- "grey95"
c4 <- "grey5"
c5 <- col[9]
# fuentes ----------------------------------------------------------------
# Ubuntu
font_add(
family = "ubuntu",
regular = "fuentes/Ubuntu-Regular.ttf",
bold = "fuentes/Ubuntu-Bold.ttf",
italic = "fuentes/Ubuntu-Italic.ttf")
# monoespacio & íconos
font_add(
family = "jet",
regular = "fuentes/JetBrainsMonoNLNerdFontMono-Regular.ttf")
# fontawesome
font_add(
family = "fa",
regular = "fuentes/Font Awesome 6 Free-Solid-900.otf")
showtext_auto()
showtext_opts(dpi = 300)
# caption
fuente <- glue(
"<b>Datos:</b> <span style='color:{c1};'>Terra Climate Data</span>")
autor <- glue("<span style='color:{c1};'>Víctor Gauto</span>")
icon_twitter <- glue("<span style='font-family:jet;'></span>")
icon_instagram <- glue("<span style='font-family:jet;'></span>")
icon_github <- glue("<span style='font-family:jet;'></span>")
icon_mastodon <- glue("<span style='font-family:jet;'>󰫑</span>")
usuario <- glue("<span style='color:{c1};'>vhgauto</span>")
sep <- glue("**|**")
mi_caption <- glue(
"{fuente} {sep} {autor} {sep} <b>{icon_github} {icon_twitter} ",
"{icon_instagram} {icon_mastodon}</b> {usuario}")
# datos ------------------------------------------------------------------
# Argentina
arg0 <- vect("extras/arg_continental.gpkg") |>
project("EPSG:5346")
# Provincias
arg1 <- vect("extras/pcias_continental.gpkg")
# diviones internas
arg_sf_ext <- sf::st_as_sf(arg1) |>
sf::st_union() |>
sf::st_cast("MULTILINESTRING")
arg_sf_int <- sf::st_as_sf(arg1) |>
sf::st_cast("MULTILINESTRING")
l <- sf::st_difference(arg_sf_int, arg_sf_ext) |>
vect()
# verifico límites internos
plot(l, axes = FALSE)
# temperatura ------------------------------------------------------------
# temperatura máxima y mínima, de los últimos 50 años
data_temp = climateR::getTerraClim(AOI = arg0,
varname = c("tmax", "tmin"),
startDate = "1974-01-01",
endDate = "2024-01-01")
# calculo la temperatura media a partir del rango
prom_mes_temp <- (data_temp$tmax + data_temp$tmin) / 2
# calculo la media de los 50 años, de todos los promedios mensuales
prom_temp <- mean(mean_temp_monthly, na.rm = TRUE)
# convierto a POSGAR 2007
prom_temp_proj <- project(prom_temp, "EPSG:5346")
# recorto a Argentina
arg_temp <- crop(prom_temp_proj, arg0, mask = TRUE)
# figura
plot(arg_temp)
# precipitación ----------------------------------------------------------
# precipitación, de los últimos 50 años
data_ppt = climateR::getTerraClim(AOI = arg0,
varname = "ppt",
startDate = "1974-01-01",
endDate = "2024-01-01")
# calculo la media de los 50 años, de todos los promedios mensuales
prom_ppt <- mean(data_ppt$ppt, na.rm = TRUE)
# convierto a POSGAR 2007
prom_ppt_proj <- project(prom_ppt, "EPSG:5346")
# recorto a Argentina
arg_ppt <- crop(prom_ppt_proj, arg0, mask = TRUE)
# figura
plot(arg_ppt)
# combino datos ----------------------------------------------------------
# combino temperatura y precipitación y cambio de nombre
temp_ppt <- c(arg_temp, arg_ppt)
names(temp_ppt) <- c("temp", "ppt")
# convierto a tibble
temp_ppt_tbl <- temp_ppt |>
as.data.frame(xy = TRUE) |>
tibble()
# genero los cuartiles de ambas propiedades
data_bi <- bi_class(temp_ppt_tbl,
x = temp,
y = ppt,
style = "quantile",
dim = 3)
# verifico las clases con un histograma para visualizar la frecuencia
data_bi |>
count(bi_class) |>
ggplot(aes(x = bi_class, y = n)) +
geom_col() +
labs(x = "Clases bivariadas", y = "Frecuencia")
write_csv(data_bi, "clima_bivariado/data_bi.csv")
data_bi <- read_csv("clima_bivariado/data_bi.csv")
# mapa -------------------------------------------------------------------
# título y subtítulo
mi_titulo <- glue(
"Patrones de <b style='color: {c1}'>precipitación</b> y ",
"<b style='color: {c2}'>temperatura</b>"
)
mi_subtitulo <- glue(
"Promedios a partir de los últimos <b>50 años</b> en ",
"<b style='color: {c5}'>Argentina</b>"
)
# ícono de flecha, para el título de eje de la leyenda bivariada
flecha <- glue("<span style='font-family:jet;'></span>")
# leyenda bivariada
leyenda <- bi_legend(pal = paleta,
flip_axes = FALSE,
rotate_pal = FALSE,
dim = 3,
arrows = FALSE
) +
labs(
x = glue("Temperatura (°C) {flecha}"),
y = glue("Precipitación (mm) {flecha}")
) +
# coord_equal(clip = "off") +
theme_void(base_size = 20) +
theme(
plot.background = element_rect(fill = c3, color = NA),
axis.title.y = element_markdown(angle = 90, hjust = .3),
axis.title.x = element_markdown(hjust = .3)
)
# mapa
g <- ggplot() +
# temperatura y precipitación
geom_tile(
data = data_bi, mapping = aes(x = x, y = y, fill = bi_class), color = NA,
show.legend = FALSE
) +
# límites internos
geom_spatvector(data = l, fill = NA, color = c3, linewidth = .25) +
# Argentina
# geom_spatvector(data = arg0, fill = NA, color = c4, linewidth = 1) +
bi_scale_fill(pal = paleta, dim = 3, flip_axes = FALSE, rotate_pal = FALSE) +
labs(
title = mi_titulo,
subtitle = mi_subtitulo,
caption = mi_caption
) +
theme_void(base_size = 14) +
theme(
plot.background = element_rect(fill = c3, color = NA),
plot.title = element_markdown(
hjust = 0.5, face = "bold", family = "ubuntu", size = 40
),
plot.subtitle = element_markdown(hjust = 0.5, family = "ubuntu", size = 30),
plot.caption = element_markdown(
size = 25, face = "bold", family = "ubuntu", color = c2, hjust = 0
)
)
# combino mapa y leyenda
g2 <- g + inset_element(
leyenda, left = .6, right = .9, bottom = .15, top = .45
) +
plot_annotation(
theme = theme(
plot.background = element_rect(fill = NA, color = c5, linewidth = 3),
plot.margin = margin(b = 10, t = 11, r = 63, l = 63)
)
)
# guardo
ggsave(
plot = g2,
filename = "clima_bivariado/viz.png",
width = 30,
height = 60,
units = "cm"
)
# abro
browseURL(glue("{getwd()}/clima_bivariado/viz.png"))