Skip to content

Commit

Permalink
Merge pull request #216 from SSoubie/master
Browse files Browse the repository at this point in the history
Informes de Conectvidad
  • Loading branch information
SSoubie authored Jun 15, 2024
2 parents 6c2db3a + 5f85e60 commit 9689e8b
Show file tree
Hide file tree
Showing 20 changed files with 4,857 additions and 948 deletions.
12 changes: 11 additions & 1 deletion .Rproj.user/shared/notebooks/paths
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
/home/mcipponeri/dnme_apps/internacional.Rmd="E277B6D8"
/home/spinelli/ECONOMIA/dnme_apps/empleo.Rmd="D182E1D0"
/home/spinelli/ECONOMIA/dnme_apps/mulc.Rmd="AD9C910A"
/home/ssoubiel/trabajos/cnrt/informe/skeleton.Rmd="DF6B813B"
/home/ssoubiel/trabajos/cnrt/investigacio.R="C0D52C9D"
/home/ssoubiel/trabajos/cnrt/viejo/TABLERO DE CONTROL.R="6CE846F2"
/home/ssoubiel/trabajos/cnrt/viejo/ad_hoc.R="3935D92D"
/home/ssoubiel/trabajos/cnrt/viejo/aux_funciones.R="D163E8E3"
/home/ssoubiel/trabajos/cnrt/viejo/cnrt_dicc_temrinales_geo.R="E3EA16CC"
/home/ssoubiel/trabajos/cnrt/viejo/exploracion_varios/0_cnrt_dut_lpvi_lppa_armado_bases_historicas.R="ECC8981F"
/home/ssoubiel/trabajos/cnrt/viejo/exploracion_varios/corrector_nombre_localidades.R="23AC265B"
/home/ssoubiel/trabajos/cnrt/viejo/exploracion_varios/exploracion_geo_terminales_gobloc.R="0B1F5540"
/home/ssoubiel/trabajos/cnrt/viejo/exploracion_varios/exploracion_temporalidad.R="73A546CE"
/home/ssoubiel/trabajos/conectividad_procesamiento/documento_trabajo/documento_de_trabajo.Rmd="6167E10B"
/home/ssoubiel/trabajos/dnme_apps/cnrt.Rmd="4E168091"
/home/ssoubiel/trabajos/dnme_apps/conectividad.Rmd="D6491511"
114 changes: 109 additions & 5 deletions cnrt.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ params:

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = F, message = F, warning = F,
fig.align = 'left', fig.width = 10,fig.height = 6)
fig.align = 'left', fig.width = 10, fig.height = 6)
library(tidyverse)
library(comunicacion)
Expand All @@ -23,6 +23,9 @@ library(networkD3)
library(herramientas)
library(htmlwidgets)
library(treemapify)
library(leaflet)
library(htmltools)
library(sf)
options(scipen = 999)
Sys.setlocale(locale = "es_AR.UTF-8")
Expand All @@ -32,7 +35,7 @@ Sys.setlocale(locale = "es_AR.UTF-8")
```{r carga base}
# Base Actual
base_total <- read_file_srv("cnrt/base_de_trabajo/base_final/cnrt_total_historica_2024-01-01_a_2024-04-30.parquet") # Actualizar
base_total <- read_file_srv("cnrt/base_de_trabajo/base_final/cnrt_total_historica_2024-01-01_a_2024-05-31.parquet") # Actualizar
# Base Año Previo
base_vieja <- read_file_srv("cnrt/base_de_trabajo/base_final/cnrt_total_historica_2023-01-01_a_2023-12-31.parquet")
Expand Down Expand Up @@ -399,7 +402,29 @@ sankey <- sankeyNetwork(Links = base_total_agrupada_region_pasajeros,
sankey <- htmlwidgets::prependContent(sankey, htmltools::tags$h1("Flujo de pasajeros entre regiones turísticas",
style = "font-size: 20px"))
style = "font-size: 20px;
height: -10%"))
# # create left-right label
# leftTx <- htmltools::tags$div(
# style="max-width: 30vw; height: 100%;
# display: flex; align-items: center;
# justify-content: center;",
# htmltools::tags$p("ORIGEN"))
#
# rightTx <- htmltools::tags$div(
# style="max-width: 30vw; height: 100%;
# display: flex; align-items: center;
# justify-content: center;",
# htmltools::tags$p("DESTINO"))
#
# # final output with label. combineWidget
# # can be use by manipulateWidget.
# sankey <- htmltools::combineWidgets(
# leftCol = leftTx,
# rightCol = rightTx,
# nrow = 1)
sankey
Expand Down Expand Up @@ -1102,8 +1127,6 @@ rutas_numero_cabotaje_diferencia <- if_else((rutas_aereas_numero_tot[2,3] %>% pu
Hasta **`r datos_mes_anio`**, existían en el país **`r rutas_numero_total` rutas con 4 o más frecuencias mensuales**, `r rutas_numero_cabotaje_diferencia` con respecto al mismo mes del año pasado (`r rutas_numero_total_previo`). De dicho total, `r rutas_numero_federales` eran federales y `r rutas_numero_portenias` eran porteñas.

```{r}
# VER
graf_4 <-
rutas_aereas_numero %>%
ggplot(aes(x = fecha,
Expand Down Expand Up @@ -1158,6 +1181,87 @@ ggplotly(graf_4, tooltip = "text") %>%
"Con 4 o más frecuencias mensuales",'</sup>')))
```

```{r}
# De dónde sale lo que viene? Ver
# Cargamos las geometrías de las rutas más importantes.
rutas <- read_file_srv("cnrt/base_de_trabajo/rutas_shape.geojson")
# Unimos con el dataset de rutas más concurridas del mes.
base_total_pasajeros <- rutas %>%
left_join(base_total_pasajeros,
by = "par_origen_destino") %>%
filter(!is.na(tramo_clasificacion))
# Levantamos las coordenadas de las localidades.
locs <- read_file_srv("cnrt/base_de_trabajo/localidades_cord.csv")
locs <- locs %>%
filter(localidad %in% base_total_pasajeros$dst | localidad %in% base_total_pasajeros$src)
```


```{r, fig.cap= "Los trayectos son ilustrativos.", fig.align = 'left'}
# Editamoas paleta
colores_rutas <- c("Porteñas" = dnmye_colores("cian"),
"Intrafederales" = dnmye_colores("rosa"))
pal <- colorFactor(colores_rutas, levels = base_total_pasajeros$tramo_clasificacion)
# Editamos título
tag.map.title <- tags$style(HTML("
.leaflet-control.map-title {
transform: translate(-50%,20%);
position: fixed !important;
left: 50%;
text-align: center;
padding-left: 10px;
padding-right: 10px;
background: rgba(255,255,255,0.75);
font-weight: bold;
font-size: 28px;
}
"))
title <- tags$div(
tag.map.title, HTML(glue::glue("Rutas más transitadas de {datos_mes_anio}"))
)
# Visualizamos.
leaflet(width = 700) %>%
geoAr::addArgTiles() %>%
addPolylines(data = base_total_pasajeros %>% sf::st_jitter(factor = 0.0005),
popup = ~ paste(paste("Ruta: ", src, " - ", dst),
paste0("Pasajeros: ", format(total, big.mark = ".")),
sep = "<br/>"),
color = ~pal(tramo_clasificacion),
smoothFactor = 1,
opacity = 0.75,
highlightOptions = highlightOptions(color = dnmye_colores("cian"),
weight = 2,
bringToFront = TRUE)) %>%
addCircleMarkers(data = locs,
lat = ~lat,
lng = ~lon,
color = dnmye_colores("gris oscuro"),
stroke = FALSE,
fillOpacity = 0.75,
popup = ~ localidad,
radius = 5) %>%
addLegend(
data = base_total_pasajeros,
pal = pal,
values = ~tramo_clasificacion,
position = "bottomleft",
title = "Ruta:",
opacity = 0.9) %>%
addControl(title, position = "topleft", className="map-title")
```


```{r}
# pasajeros_totales_cabotaje <- cabotaje %>%
# select(anio_local, mes_local, origen_oaci, destino_oaci, pax_ad) %>%
Expand Down
127 changes: 73 additions & 54 deletions docs/cnrt.html

Large diffs are not rendered by default.

1,754 changes: 877 additions & 877 deletions docs/conectividad.html

Large diffs are not rendered by default.

Binary file modified docs/conectividad_files/figure-html5/unnamed-chunk-27-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/conectividad_files/figure-html5/unnamed-chunk-80-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 11 additions & 11 deletions docs/search.json

Large diffs are not rendered by default.

Loading

0 comments on commit 9689e8b

Please sign in to comment.