-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
265 lines (242 loc) · 12.4 KB
/
ui.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
############################### LIBRARIES ######################################
library(DT)
library(shiny)
library(openair)
library(dplyr)
library(plotly)
library(data.table)
library(lubridate)
library(shinycssloaders)
############################ FUNCTIONS #########################################
##ClimateData function
source("https://raw.githubusercontent.com/franciscoxaxo/ChileAirQualityProject/master/R/ChileClimateData.R")
##AirQuality function
source("https://raw.githubusercontent.com/franciscoxaxo/ChileAirQualityProject/master/R/ChileAirQuality.R")
##Complementary statistics functions
source("https://raw.githubusercontent.com/franciscoxaxo/ChileAirQualityProject/master/R/complementaryFunctions.R")
########################### IU #################################################
shinyUI(
################################### HEAD #####################################
fluidPage(
tags$head(HTML("<title>ChileAirQuality Proyect</title>")),
################################# CALIDAD DEL AIRE TAB######################
tabsetPanel(tabPanel("Data Calidad del Aire",
{
titlePanel("Captura de Datos")
sidebarLayout(
sidebarPanel(
#Input start date
dateInput("Fecha_inicio",
label ="Fecha de inicio",
value = Sys.Date()-1,
min = "2005-01-01",
max= Sys.Date(),
format= "dd/mm/yyyy"),
#Input end date
dateInput("Fecha_Termino",
label ="Fecha de Termino",
value = Sys.Date()-1,
min = ("2005-01-01"),
max= Sys.Date(),
format= "dd/mm/yyyy"),
#Control option: Curate data
checkboxInput("validacion",
label = "Curar datos",
value = TRUE),
#Air quality climate factors buttons
splitLayout(checkboxGroupInput("F_Climaticos",
label ="F. Climaticos",
choices =c("temp", "HR", "wd","ws"),
selected = c("temp", "HR", "wd","ws")
),
#Air quality pollutants buttons
checkboxGroupInput("Contaminantes",
label ="Contaminantes",
choices =c( "PM10", "PM25", "NO","NO2",
"NOX","O3","CO")
)
),
#Air quality stations buttons
splitLayout(checkboxGroupInput("Comunas1",
label ="Estaciones",
choices =c("P. O'Higgins","Cerrillos 1",
"Cerrillos", "Cerro Navia",
"El Bosque","Independecia")
),
checkboxGroupInput("Comunas2",
label ="",
choices =c("Las Condes","La Florida",
"Pudahuel","Puente Alto","Quilicura",
"Quilicura 1", "Coyhaique I",
"Coyhaique II")
)
),
#Action button
submitButton("Aplicar Cambios")
),
mainPanel(
#Deploy air quality data table
withSpinner(DT::dataTableOutput("table")),
#Download air quality data
downloadButton("descargar", label ="Descargar"),
#Hide error
tags$style(type="text/css",
".shiny-output-error { visibility: hidden; }",
".shiny-output-error:before { visibility: hidden; }"
)
)
)
}
),
############################### DATA CLIMATE TAB ###########################
tabPanel("Data Climatica",
{
sidebarLayout(
sidebarPanel(
#Years range for the data collection
sliderInput("rango",
"Rango:",
min = 1940,
max = 2021,
value = c(2000,2020)),
#Climate data parameters
checkboxGroupInput("parametros",
label ="Parametros",
choices =c("Temperatura", "PuntoRocio", "Humedad",
"Viento", "PresionQFE", "PresionQFF"),
selected = c("Temperatura", "PuntoRocio", "Humedad",
"Viento", "PresionQFE", "PresionQFF")),
#Ad regions button
splitLayout(
checkboxGroupInput("region1",
label ="Regiones",
choices =c("I","II",
"III", "IV",
"V","VI", "VII", "VIII")
),
checkboxGroupInput("region2",
label ="",
choices =c("IX","X",
"XI","XII","XIV",
"XV", "XVI",
"RM"))
),
#Action button
submitButton("Aplicar Cambios")
),
#Deploy climate data table
mainPanel(
withSpinner( DT::dataTableOutput("table1")),
#Download button
downloadButton("descargar1",label ="Descargar"),
#Hide error
tags$style(type="text/css",
".shiny-output-error { visibility: hidden; }",
".shiny-output-error:before { visibility: hidden; }")
)
)
}
),
############################## GRAFICAS TAB ################################
tabPanel("Gráficas",
{
sidebarLayout(
sidebarPanel(
uiOutput("sData2"),
uiOutput("selectorGraficos"),##In development!!!
#Deploy graphic selection bar option
#Deploy complementary options
uiOutput("moreControls"),
#Action button
submitButton("Actualizar")
),
mainPanel(
withSpinner(uiOutput("mainGraphics"))
,
#Hide errors
tags$style(type="text/css",
".shiny-output-error { visibility: hidden; }",
".shiny-output-error:before { visibility: hidden; }"
)
)
)
}
),
############################# RESUMEN TAB ##################################
tabPanel("Resumen",
{
sidebarLayout(
sidebarPanel(
uiOutput("sData"),
#Select statistic summary option
selectInput("statsummary","Resumen Estadistico",
choices = c("--Seleccionar--","Promedio",
"Mediana","Desviacion Estandar",
"coeficiente de variacion")
),
#Action bottom
submitButton("Aplicar Cambios")
),
mainPanel(
# Stats table
withSpinner(DT::dataTableOutput("statstable")),
#Download stats table
downloadButton("descargarstats",
label ="Descargar"
),
#Hide errors
tags$style(type="text/css",
".shiny-output-error { visibility: hidden; }",
".shiny-output-error:before { visibility: hidden; }"
)
)
)
}
),
############################ INFORMACION TAB ###############################
tabPanel("Información",
{
#Table of variables
verticalLayout(
tags$body(HTML("
<h1><strong>Calidad del aire</strong></h1>
<h2><strong>Variables de Calidad del aire</strong></h2>
<p>Esta aplicación tiene disponible los siguientes
parámetros para el análisis de la calidad del
aire disponibles del Sistema de Información
Nacional de Calidad del Aire. </p>
")),
withSpinner(tableOutput("info_2")),
tags$body(HTML("
<a href = 'https://sinca.mma.gob.cl/'> sinca.mma.gob.cl</a>
<h2><strong>Estaciones de monitoreo</strong></h2>
<p>Los datos recopilados por esta aplicación son reportados
por el sistema de información nacional de calidad
del aire a partir de la red de estaciones de monitoreo
MACAM distribuidas en las comunas de la región metropolitana. </p>"
)),
withSpinner(plotlyOutput("sitemap",
width = "500px",
height = "500px"
)),
tags$body(HTML("
<br>
<br>
<h1><strong>Meteorología</strong></h1>
<h2><strong>Variables meteorológicas</strong></h2>
<p>Esta aplicación tiene disponible los siguientes
parámetros para el análisis meteorológicos
disponibles en la Dirección meteorológica de
Chile.</p>
")),
withSpinner(tableOutput("info_3")),
tags$body(HTML("
<a href = 'http://www.meteochile.gob.cl/'> www.meteochile.gob.cl</a>
<br>
<br>
<br>
<br>"))
)
}
)
)))