-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__app.R
523 lines (452 loc) · 14.1 KB
/
__app.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
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
library(miniUI)
library(CRSSIO)
server <- function(input, output, session) {
isDnfStartYearValid <- reactive({
if (is.null(input$nfInputStartYear))
return(TRUE)
else
as.integer(input$nfInputStartYear) >= 1906
})
isDnfEndAfterStart <- reactive({
if (is.null(input$nfInputStartYear) | is.null(input$nfInputEndYear))
return(TRUE)
else
as.integer(input$nfInputStartYear) <= as.integer(input$nfInputEndYear)
})
output$dnfStartEndErrors <- renderUI({
errMsg <- ""
if (!(is.null(input$nfInputStartYear) | is.null(input$nfInputEndYear))) {
if (!isDnfStartYearValid())
errMsg <- paste0(errMsg, "Start year should be after 1906", br())
if(!isDnfEndAfterStart())
errMsg <- paste0(
errMsg,
"The end date should be after the start date.",
br()
)
}
div(class = "errorMessage", HTML(errMsg))
})
ismRange <- reactive({
if(is.null(input$nfInputStartYear) | is.null(input$nfInputEndYear))
return(10000)
else
as.integer(input$nfInputEndYear) -
as.integer(input$nfInputStartYear) + 1
})
isSimYrsValid <- reactive({
if ( all(
isDnfSelected(),
!is.null(input$simEndYear),
!is.null(input$traceStartYear)
)){
as.integer(input$simEndYear) - as.integer(input$traceStartYear) + 1 <=
ismRange()
} else{
TRUE
}
})
isEndYearValid <- reactive({
if ( all(
isDnfSelected() | isCmipSelected(),
!is.null(input$simEndYear),
!is.null(input$traceStartYear)
))
as.integer(input$simEndYear) >= as.integer(input$traceStartYear)
else
TRUE
})
output$simYrsCheck <- renderUI({
if (!isSimYrsValid())
div(
class = "errorMessage",
HTML("Simulation Years cannot be longer than the number of years in the record from step 1.")
)
else if (!isEndYearValid())
div(
class = "errorMessage",
HTML("The model run end year should be >= the model run start year.")
)
else
HTML("")
})
isOutputFolderValid <- reactive({
if (isDnfSelected() & !is.null(input$selectFolder))
dir.exists(input$selectFolder)
else
TRUE
})
output$checkInputFolder <- renderUI({
if(!isOutputFolderValid())
div(class = "errorMessage",
HTML("Folder does not exist"))
else
HTML("")
})
# check the simulation options ------------------------
output$simStartYearUI <- renderUI({
if (isDnfSelected() | isCmipSelected() | isHistNfSelected())
selectInput(
'traceStartYear',
'Traces Start In:',
choices = seq(2000, 2099),
selected = 2018
)
})
output$simEndYearUI <- renderUI({
if (isDnfSelected() | isCmipSelected())
selectInput(
"simEndYear",
"Traces End In:",
choices = seq(2000, 2099),
selected = 2060
)
})
output$simYearHeader <- renderText({
if (isDnfSelected() | isCmipSelected() | isHistNfSelected())
"Select the simulation start and end years of the CRSS simulations."
else
""
})
output$simYearTitle <- renderText({
if (isDnfSelected() | isCmipSelected() | isHistNfSelected())
"Simulation Start and End Years"
else
""
})
# check the DNF creation options ----------------------
isDnfSelected <- reactive({
!is.null(input$createFiles) & "dnf" %in% input$createFiles
})
output$nfRecordStart <- renderUI({
if (isDnfSelected()) {
selectInput(
"nfInputStartYear",
"Start Year:",
choices = 1906:2020,
selected = 1906
)
} else
return()
})
output$nfRecordEnd <- renderUI({
if (isDnfSelected()) {
selectInput(
"nfInputEndYear",
'End Year',
choices = 1906:2020,
selected = 2015
)
} else
return()
})
output$nfRecordHeader <- renderText({
if (isDnfSelected())
"Select the years to apply ISM to:"
else
return("")
})
output$dnfFolderOut <- renderUI({
if (isDnfSelected())
textInput('selectFolder', 'Select Folder', value = 'C:/')
else
return()
})
output$dnfOverwriteUI <- renderUI({
if (isDnfSelected())
radioButtons(
"overwriteDnf",
label = "Overwrite existing files?",
choices = c("No" = FALSE, "Yes" = TRUE),
selected = FALSE,
inline = TRUE
)
else
return()
})
output$dnfFolderHeader <- renderText({
if (isDnfSelected())
"Select the folder to save the trace files in. The folder should already exist."
else
return("")
})
output$dnfSectionHeader <- renderText({
if (isDnfSelected())
"Create Direct Natural Flow Options"
else
return("")
})
# check CMIP creation options ------------------------
isCmipSelected <- reactive({
!is.null(input$createFiles) & "cmip5" %in% input$createFiles
})
isCmipFileValid <- reactive({
if (isCmipSelected() & !is.null(input$cmipFile))
file.exists(input$cmipFile)
else
TRUE
})
isCmipNCFile <- reactive({
if (isCmipSelected() & !is.null(input$cmipFile))
tools::file_ext(input$cmipFile) == "nc"
else
TRUE
})
output$checkCmip5IFile <- renderUI({
errMsg <- ""
if (!isCmipFileValid())
errMsg <- paste(errMsg, "Netcdf file does not exist.")
if (!isCmipNCFile())
errMsg <- paste(errMsg, "Please specify a '.nc' file.")
div(class = "errorMessage", HTML(errMsg))
})
output$cmipSectionHeader <- renderText({
if (isCmipSelected())
"Create CMIP Natural Flow File Options"
else
""
})
output$cmipInputHeader <- renderText({
if (isCmipSelected())
"Select the input netcdf file and the scenario number you wish to use."
else
""
})
output$cmipInputHeader2 <- renderText({
if (isCmipSelected())
"Select folder to save CMIP natural flow files to."
else
""
})
output$cmipIFileUI <- renderUI({
if (isCmipSelected())
textInput(
"cmipFile",
"Select CMIP netcdf file to use:",
value = "C:/test.nc"
)
})
output$cmipScenNumUI <- renderUI({
if (isCmipSelected())
textInput("cmipScenNum", label = "Scenario number:", value = "5")
})
output$cmipOFolderUI <- renderUI({
if (isCmipSelected())
textInput("cmipOFolder", "Select folder:", value = "C:/")
})
output$cmipOverwriteUI <- renderUI({
if (isCmipSelected())
radioButtons(
"overwriteCmip",
label = "Overwrite existing files?",
choices = c("No" = FALSE, "Yes" = TRUE),
selected = FALSE,
inline = TRUE
)
else
return()
})
isCmipOutputFolderValid <- reactive({
if (isCmipSelected() & !is.null(input$cmipOFolder))
dir.exists(input$cmipOFolder)
else
TRUE
})
output$checkCmip5OFolder <- renderUI({
if(!isCmipOutputFolderValid())
div(class = "errorMessage",
HTML("Folder does not exist"))
else
HTML("")
})
# check the natural flow xlsx creation options -------------
isHistNfSelected <- reactive({
!is.null(input$createFiles) & "histNF" %in% input$createFiles
})
output$xlAvg <- renderUI({
if (isHistNfSelected())
sliderInput(
"xlAvg",
"Select number of years to average when filling LB flow data",
min = 1,
max = 20,
value = 5
)
else
return()
})
output$xlPath <- renderUI({
if (isHistNfSelected())
textInput("xlPath", "Select folder to save file in:", value = "C:/")
else
return()
})
isXlPathValid <- reactive({
if (isHistNfSelected() & !is.null(input$xlPath))
return(dir.exists(input$xlPath))
else
# if you aren't creating the excel file, always return true for this
TRUE
})
output$checkXlFolder <- renderUI({
if(!isXlPathValid())
div(class = "errorMessage", HTML("Folder does not exist"))
else
HTML("")
})
output$histNfSectionHeader <- renderUI({
if (isHistNfSelected())
"Create HistoricalNaturalFlows.xlsx Options"
else
""
})
# check all output errors ----------------------
isAllInputValid <- reactive({
isSimYrsValid() & isOutputFolderValid() & isDnfStartYearValid() &
isDnfEndAfterStart() & isXlPathValid() & isCmipFileValid() &
isCmipOutputFolderValid() & isCmipNCFile()
})
output$checkAllErrors <- renderUI({
if(!isAllInputValid())
div(
class = "errorMessage",
HTML("Please fix errors before clicking run.")
)
else
HTML("")
})
# done --------------
# Listen for 'done' events.
observeEvent(input$done, {
if(isAllInputValid()){
rr <- zoo::as.yearmon(c(paste0(input$nfInputStartYear, "-1"),
paste0(input$nfInputEndYear, "-12")))
if (isDnfSelected()) {
crssi_create_dnf_files(
"CoRiverNF",
oFolder = input$selectFolder,
startYear = as.integer(input$traceStartYear),
endYear = as.integer(input$simEndYear),
recordToUse = rr,
overwriteFiles = as.logical(input$overwriteDnf)
)
message(paste("\nAll DNF trace files have been saved to:",
input$selectFolder))
}
if (isCmipSelected()) {
crssi_create_cmip_nf_files(
input$cmipFile,
oFolder = input$cmipOFolder,
startYear = as.integer(input$traceStartYear),
endYear = as.integer(input$simEndYear),
scenarioNumber = input$cmipScenNum ,
overwriteFiles = as.logical(input$overwriteCmip)
)
message(paste("\nAll CMIP trace files have been saved to:",
input$cmipOFolder))
}
if (isHistNfSelected()) {
crssi_create_hist_nf_xlsx(
as.integer(input$traceStartYear),
nYearAvg = as.integer(input$xlAvg),
oFolder = input$xlPath
)
message(paste("\nHistoricalNaturalFlow.xlsx saved to:", input$xlPath))
}
stopApp()
}
})
}
divHeight <- "50px"
padLeft <- "padding-left: 10px;"
ui <- miniPage(
tags$head(
tags$style(HTML("
.errorMessage {
color: red;
}
"))
),
gadgetTitleBar(
"Create CRSS Input Files",
right = miniTitleBarButton("done","Close and Run", primary = TRUE)
),
miniContentPanel(padding = 0,
# select files to create -------------------------
fillRow(
checkboxGroupInput(
"createFiles",
label = "Select files to create:",
choices = c("DNF Files" = "dnf", "CMIP Files" = "cmip5",
"HistoricalNaturalFlows.xlsx" = "histNF"),
selected = c("dnf", "histNF"),
inline = TRUE
),
height = divHeight,
style = padLeft
),
# simulation start and end years ------------
h4(htmlOutput("simYearTitle"), "style" = padLeft),
h5(htmlOutput("simYearHeader"), "style" = padLeft),
fillRow(
uiOutput("simStartYearUI"),
uiOutput("simEndYearUI"),
htmlOutput("simYrsCheck"),
height = divHeight,
"style" = padLeft
),
# show observed record options -----------------
h4(htmlOutput("dnfSectionHeader"), "style" = padLeft),
h5(htmlOutput("nfRecordHeader"), "style" = padLeft),
fillRow(
uiOutput("nfRecordStart"),
uiOutput("nfRecordEnd"),
htmlOutput("dnfStartEndErrors"),
height = divHeight,
"style" = padLeft
),
h5(htmlOutput("dnfFolderHeader"), "style" = padLeft),
fillRow(
uiOutput("dnfFolderOut"),
uiOutput("dnfOverwriteUI"),
htmlOutput("checkInputFolder"),
height = divHeight,
"style" = padLeft
),
# show CMIP options -------------------------------
h4(htmlOutput("cmipSectionHeader"), "style" = padLeft),
h5(htmlOutput("cmipInputHeader"), "style" = padLeft),
fillRow(
uiOutput("cmipIFileUI"),
uiOutput("cmipScenNumUI"),
htmlOutput("checkCmip5IFile"),
height = divHeight,
"style" = padLeft
),
h5(htmlOutput("cmipInputHeader2"), "style" = padLeft),
fillRow(
uiOutput("cmipOFolderUI"),
uiOutput("cmipOverwriteUI"),
htmlOutput("checkCmip5OFolder"),
height = divHeight,
"style" = padLeft
),
# if xlsx, select the parameters of that file -------------------
h4(htmlOutput("histNfSectionHeader"), "style" = padLeft),
fillRow(
uiOutput("xlAvg"),
uiOutput("xlPath"),
htmlOutput("checkXlFolder"),
height = divHeight,
"style" = padLeft
),
br(), br(), br(), br(),
# final validation ----------------
fillRow(
htmlOutput("checkAllErrors"),
height = divHeight,
"style" = "padding-left: 10px; padding-top: 50px"
)
)
)
shinyApp(ui = ui, server = server)