-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.R
226 lines (192 loc) · 7.03 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
# paquetes ----------------------------------------------------------------
library(glue)
library(ggtext)
library(showtext)
library(sf)
library(tidyverse)
# fuente ------------------------------------------------------------------
# colores
c1 <- "#4B3232"
c2 <- "white"
c3 <- "gold"
c4 <- "black"
# fuente: Ubuntu
font_add(
family = "ubuntu",
regular = "fuente/Ubuntu-Regular.ttf",
bold = "fuente/Ubuntu-Bold.ttf",
italic = "fuente/Ubuntu-Italic.ttf")
# fuente: Victor
font_add(
family = "victor",
regular = "fuente/VictorMono-ExtraLight.ttf",
bold = "fuente/VictorMono-VariableFont_wght.ttf",
italic = "fuente/VictorMono-ExtraLightItalic.ttf")
# íconos
font_add(
family = "jet",
regular = "fuente/JetBrainsMonoNLNerdFontMono-Regular.ttf")
showtext_auto()
showtext_opts(dpi = 300)
# caption
fuente <- glue(
"Datos: <span style='color:{c3};'><span style='font-family:mono;'>",
"{{<b>tidytuesdayR</b>}}</span> semana {15}. ",
"Scientific Visualization Studio, <b>NASA</b>.</span>")
autor <- glue("<span style='color:{c3};'>**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:{c3};'>**vhgauto**</span>")
sep <- glue("**|**")
mi_caption <- glue(
"{fuente}<br>{autor} {sep} {icon_github} {icon_twitter} {icon_instagram} ",
"{icon_mastodon} {usuario}")
# datos -------------------------------------------------------------------
tuesdata <- tidytuesdayR::tt_load(2024, 15)
# me interesa distinguir las ciudades con eclipse total de las ciudades con
# eclipse parcial, y agregar los horarios en rangos de 10min
ecl_2023 <- tuesdata$eclipse_annular_2023
par_2023 <- tuesdata$eclipse_partial_2023
ecl_2024 <- tuesdata$eclipse_total_2024
par_2024 <- tuesdata$eclipse_partial_2024
# EE.UU.
# quito estos estados
no_estados <- c(
"Alaska", "Hawaii", "Commonwealth of the Northern Mariana Islands", "Guam",
"Puerto Rico", "United States Virgin Islands", "American Samoa")
# combino los estados y cambio de proyección
usa <- rgeoboundaries::gb_adm1(country = "USA") |>
filter(!shapeName %in% no_estados) |>
st_union() |>
st_transform(crs = 5070)
# función que convierte tibble en sf y calcula el tiempo (hora:minuto)
f_sf <- function(df, año, paleta = "tokyo") {
d <- df |>
mutate(minuto = minute(eclipse_3), hora = hour(eclipse_3)) |>
mutate(minuto = minuto - minuto %% 10) |>
select(lat, lon, hora, minuto) |>
mutate(hora_minuto = hm(glue("{hora}:{minuto}"))) |>
mutate(hm_fct = glue("{hora}:{minuto}")) |>
mutate(hm_fct = if_else(hm_fct == "19:0", "19:00", hm_fct)) |>
mutate(hm_fct = fct_reorder(hm_fct, hora_minuto)) |>
st_as_sf(coords = c("lon", "lat")) |>
st_set_crs(value = 4326) |>
st_transform(crs = 5070) |>
mutate(year = año)
p <- scico::scico(n = length(unique(d$hm_fct)), palette = paleta)
d |>
mutate(color = p[hm_fct])
}
# función que obtiene el centro de cada región hora:minuto
f_centro <- function(df, año) {
df |>
select(hm_fct) |>
nest(.by = hm_fct) |>
mutate(uni = map(.x = data, ~ st_union(.x))) |>
mutate(centro = map(.x = uni, ~ st_centroid(.x))) |>
unnest(centro) |>
select(hm_fct, centro) |>
st_as_sf() |>
mutate(year = año) |>
mutate(coord = map(.x = centro, st_coordinates)) |>
mutate(coord = map(.x = coord, as_tibble)) |>
unnest(coord) |>
st_drop_geometry() |>
mutate(
X = if_else(year == 2023, X + 1.6e5, X - 1.6e5),
Y = if_else(year == 2023, Y + 1.1e5, Y + 1.2e5)) |>
mutate(angle = if_else(year == 2023, -45, 43)) |>
st_as_sf(coords = c("X", "Y")) |>
st_set_crs(value = 5070)
}
# función para convertir tibble a sf, para otras ciudades
f_parcial <- function(df, año) {
df |>
st_as_sf(coords = c("lon", "lat")) |>
st_set_crs(value = 4326) |>
st_transform(crs = 5070) |>
mutate(year = año) |>
st_crop(usa) |>
select(year)
}
# ciudades con eclipse total
d_2023 <- f_sf(ecl_2023, 2023, paleta = "hawaii")
d_2024 <- f_sf(ecl_2024, 2024, paleta = "hawaii")
d <- rbind(d_2023, d_2024)
# horarios ubicados en el centro de las regiones
d_centro_2023 <- f_centro(d_2023, 2023)
d_centro_2024 <- f_centro(d_2024, 2024)
d_centro <- rbind(d_centro_2023, d_centro_2024) |>
mutate(coord = map(.x = geometry, st_coordinates)) |>
mutate(coord = map(.x = coord, as_tibble)) |>
unnest(coord) |>
st_drop_geometry()
# ciudades con eclipse parcial
d_parcial_2023 <- f_parcial(par_2023, 2023)
d_parcial_2024 <- f_parcial(par_2024, 2024)
d_parcial <- rbind(d_parcial_2023, d_parcial_2024)
# figura ------------------------------------------------------------------
# subtítulo
mi_subtitle <- glue(
"Este año y el año pasado se vieron eclipses solares en regiones del ",
"<b>Hemisferio Norte</b>.<br>",
"Se muestran ciudades de EE.UU. con ",
"<b style='color:{c2}'>eclipses parciales</b> y los horarios de inicio del<br>",
"evento en donde el eclipse fue total."
)
# años de los eclipses
flecha_icon <- "<span style='font-family:jet;font-size:20pt;'></span>"
label_año <- c(
glue(
"{flecha_icon} 14 de octubre de 2023, eclipse ",
"<b style='color:gold'>solar</b> anular"),
glue(
"{flecha_icon} 8 de abril de 2024, eclipse ",
"<b style='color:gold'>solar</b> total"))
names(label_año) <- c(2023, 2024)
# figura
g <- ggplot() +
# USA
geom_sf(data = usa, fill = NA, color = c2, linewidth = .1) +
# otras ciudades
geom_sf(data = d_parcial, color = c2, size = .25, alpha = .25) +
# eclipse
geom_sf(
data = d, aes(color = color), size = 1, alpha = .7, show.legend = FALSE) +
# horas:minutos
geom_richtext(
data = d_centro, aes(X, Y, label = hm_fct, angle = angle), color = c3,
size = 5, hjust = .5, family = "jet", fill = alpha(c4, .6),
label.r = unit(0, "mm"), label.color = NA,
label.padding = unit(c(.1, .1, .1, .1), "lines")) +
facet_wrap(vars(year), ncol = 1, labeller = as_labeller(label_año)) +
# escalas
scale_color_identity() +
labs(subtitle = mi_subtitle, caption = mi_caption) +
guides(
color = guide_legend(override.aes = list(alpha = 1, size = 5, shape = 15))
) +
theme_void() +
theme(
plot.background = element_rect(fill = c1, color = c2, linewidth = 3),
plot.subtitle = element_markdown(
family = "ubuntu", color = c3, size = 20,
margin = margin(b = 20, t = 10, l = 10), lineheight = unit(1.1, "line")),
plot.margin = margin(t = 11, r = 6.4, b = 11, l = 6.4),
plot.caption = element_markdown(
color = c2, family = "ubuntu", size = 14, lineheight = unit(1.1, "line"),
margin = margin(b = 10, r = 10)),
strip.text = element_markdown(
family = "ubuntu", color = c2, size = 20, hjust = .05)
)
# guardo
ggsave(
plot = g,
filename = "2024/s15/viz.png",
width = 30,
height = 44,
units = "cm")
# abro
browseURL("2024/s15/viz.png")