-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.R
772 lines (623 loc) · 26 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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
#### Packages ####
library(dplyr)
library(lubridate)
library(shiny)
library(markdown)
library(bs4Dash)
library(shinyjs)
library(waiter)
library(magick)
library(shinyalert)
library(stringr)
library(shinydisconnect)
library(tippy)
library(httr)
library(shinyWidgets)
library(googledrive)
library(googlesheets4)
library(purrr)
library(jsonlite)
library(readr)
#------------- Read in info ----------------
project_info <- readr::read_csv("./ui/project_info.csv")
camera_info <- readr::read_csv("./ui/camera_info.csv") %>%
filter(use == T)
badges_info = NULL
#### Google Auth ####
# Keys for Google Auth
source("./keys/google_keys.R")
# load google authentications
folder_ID <- Sys.getenv("GOOGLE_FOLDER_ID")
sheets_ID <- Sys.getenv("GOOGLE_SHEET_ID")
googledrive::drive_auth(path = "./keys/google_key.json")
googlesheets4::gs4_auth(token = googledrive::drive_token())
# Create temp directory for storing pictures
tmp_dir <- tempdir()
#------- camera list --------------------
# Lat and Long aren't currently in use but exist in the csv for later mapping
# Create layout info for UI
panel_data <- tibble("panels" = 1:length(camera_info$camera_name)) %>%
mutate("rows" = ceiling(panels/2),
"position" = c(0, abs(diff(rows)-1)))
button_classes <- project_info %>% filter(variable == "button_classes") %>% pull(value) %>% stringr::str_split(.,pattern=",") %>% unlist()
## 1. Load Model ---------------------------------------------------------------------
use_model <- F #project_info %>% filter(variable == "use_model") %>% pull(value) %>% as.logical()
if(use_model){
# Best model. 4 class classification model
library(keras)
badges_info <- readr::read_csv("./ui/badges.csv")
model <- keras::load_model_tf(paste0("./models/",project_info %>% filter(variable == "model") %>% pull(value)))
}
## 2. Functions to load NCDOT Images ---------------------------------------------------------------------
get_traffic_cam <- function(camera_name){
URL <- camera_info$url[camera_info$camera_name == camera_name]
# retrieve the image
pic <- magick::image_read(URL)
time <- Sys.time() %>% lubridate::with_tz("UTC")
# write the image to temporary file. This will be handy for Shiny where renderImage requires an "outfile".
magick::image_write(pic, path = paste0(tmp_dir,"/",camera_name,'.jpg'), format = "jpg")
return(time)
}
# Download pictures on initilization
walk(.x = camera_info$camera_name, .f = get_traffic_cam)
write_traffic_cam <- function(camera_name, cam_time) {
suppressMessages(googledrive::drive_upload(
media = paste0(tmp_dir,"/",camera_name,'.jpg'),
path = as_id(folder_ID),
name = paste0(camera_name, "_", cam_time, ".jpg")
))
}
## 3. Functions to classify Images ---------------------------------------------------------------------
rescale <- function(dat, mn, mx){
m = min(dat)
M = max(dat)
z <- ((mx-mn)*(dat-m))/((M-m)+mn)
return(z)
}
standardize <- function(img) {
s = sd(img)
m = mean(img)
img = (img - m) / s
img =rescale(img, 0, 1)
rm(s, m)
return(img)
}
# Function to Apply to Each Camera
get_cam <- function(cam_name){
get_traffic_cam(cam_name)
}
time_reactive_list <- reactiveValues()
walk(.x = camera_info$camera_name, .f = function(.x){
time_reactive_list[[paste0(tolower(.x),"_time_reactive")]] <- get_cam(.x)
})
if(use_model){
predict_model <- function(camera_name){
# Reshape to correct dimensions (1, 224, 224, 3)
img_array <- keras::image_load(paste0(tmp_dir,"/",camera_name,'.jpg'),
target_size = c(224,224)) %>%
keras::image_to_array() %>%
standardize() %>%
keras::array_reshape(., c(1, dim(.)))
# Model prediction
prediction <- model %>%
predict(x = img_array) %>%
t()
colnames(prediction) <- "prob"
prediction <- prediction %>%
as_tibble() %>%
transmute(prob = round(prob, 2),
label = project_info %>% filter(variable == "model_classes") %>% pull(value) %>% stringr::str_split(.,pattern=",") %>% unlist()) %>%
filter(prob == max(prob, na.rm=T)) %>%
slice(1)
prediction
}
get_prediction <- function(cam_name){
predict_model(cam_name)
}
predict_reactive_list <- reactiveValues()
walk(.x = camera_info$camera_name, .f = function(.x){
predict_reactive_list[[paste0(tolower(.x),"_predict_reactive")]] <- get_prediction(.x)
})
}
waiting_screen <- tagList(
spin_wave(),
h4(paste0("Loading ", project_info %>% filter(variable == "title") %>% pull(value)))
)
# some javascript to make sidebar automatically go away after hitting tab name while on mobile
jsCode <- "shinyjs.init = function() {
$(document).on('shiny:sessioninitialized', function (e) {
var mobile = window.matchMedia('only screen and (max-width: 768px)').matches;
Shiny.onInputChange('is_mobile_device', mobile);
});
}"
#------------------ UI definition ---------------------
ui <- bs4Dash::dashboardPage(
# Title within browser tab
title = project_info %>% filter(variable == "title") %>% pull(value),
# Title within top navbar
header = bs4Dash::dashboardHeader(
border = F,
fixed = T,
.list = list(
span(p(project_info %>% filter(variable == "title") %>% pull(value), style = "color:white;display:inline;font-size:1rem;"))
)
),
# Submit button in a fixed footer
footer = dashboardFooter(fixed = T,
left = actionButton(inputId = "submit", label = "SUBMIT", status = "success", style = "width:250px")),
##### Sidebar ####
sidebar = dashboardSidebar(
skin = "light",
status = "primary",
elevation = 2,
fixed = T,
sidebarMenu(
id = "nav",
# Menu tabs within sidebar. Model tab is shown if use_model = T as declared in project_info.csv
menuItem("Cameras", tabName = "Cameras", icon = icon("camera-retro")),
menuItem("About the Project", tabName = "About", icon = icon("info-circle")),
if(use_model){
menuItem("The Model", tabName = "Model", icon = icon("robot"))
},
menuItem("Contact Us", tabName = "Contact", icon = icon("envelope"))
)
),
##### Dashboard Body ####
dashboardBody(
fluidPage(
# Message dispalyed on screen when app times out (or errors)
disconnectMessage(
text = "Your session has timed out! Try refreshing the page.",
refresh = "Refresh",
background = "#FFFFFF",
colour = "#000000",
refreshColour = "#337AB7",
overlayColour = "#000000",
overlayOpacity = 0.25,
width = 450,
top = "center",
size = 24,
css = ""),
shinyjs::useShinyjs(),
extendShinyjs(text = jsCode, functions = c()),
useShinyalert(),
use_waiter(),
waiter::waiter_preloader(html = waiting_screen, color = "#222d32"),
# Adds logo (via the url in project_info.csv) to the browser tab. Loads style rules from .css
tags$head(
tags$link(rel = "shortcut icon", href = project_info %>% filter(variable == "logo_url") %>% pull(value)),
includeCSS("flood-camml.css")
),
##### Tab Items ####
tabItems(
#-------------- Camera tab ---------------------------
tabItem(tabName = "Cameras",
# First row shows subtitle, subtitle_description, and (if using a model) the badges. Info in project_info.csv and badges.csv
fluidRow(
column(width=12,style="padding-left:7.5px;padding-right:7.5px;",
div(class="card",
div(class = "card-body",
fluidRow(style= "align-content: center; align-items: center;",
column(width=6,
h3(project_info %>% filter(variable == "subtitle") %>% pull(value)),
h5(project_info %>% filter(variable == "subtitle_description") %>% pull(value)),
uiOutput(outputId = "badges")
),
column(width=6,
uiOutput(outputId = "description")
)
)
)
)
)
),
# Longform site info from text/site_info.md
uiOutput(outputId = "site_info"),
# Pictures (customize with camera_info.csv) with label buttons underneath
uiOutput(outputId = "picture_panel")
),
# -------------------- About tab ---------------------
tabItem(tabName = "About",
column(
width = 12,
div(class="card",
div(class = "card-body",
includeMarkdown("./text/about_project.md")
)
)
)
),
# ----------- Model tab (only shows if using model) -----------------
tabItem(tabName = "Model",
column(
width = 12,
div(class="card",
div(class = "card-body",
includeMarkdown("text/about_ML.md")
)
)
)
),
# ----------- Contact tab -----------------
tabItem(tabName = "Contact",
column(
width = 12,
div(class="card",
div(class = "card-body",
includeMarkdown("text/contact_us.md"),
a(href = "mailto:[email protected]", class = "pretty-link", "[email protected]")
)
)
)
)
),
# Content at end of page that has copyright and link to CamML
div(class = "footer-div-body",
style = "text-align:center;",
span(style="text-align:center;",p(paste0("Copyright © ",format(Sys.Date(), "%Y")," ",project_info %>% filter(variable == "organization") %>% pull(value),". Built with"), style= "display:inline;"),a("CamML", href = "https://floodcamml.github.io", class="pretty-link"))
)
)
)
)
#### Server ####
# Define server logic required to draw a histogram
server <- function(input, output, session) {
# Popup on load to display info
shinyalert(title = "",
html = T,
text = includeMarkdown("./text/landing_text.md"),
closeOnClickOutside = FALSE,
showConfirmButton = T,
confirmButtonText = "OK",
animation=F,
inputId = "splash_page",
closeOnEsc = T)
#---------------- Render label badges for directions box --------------------
output$badges <- renderUI({
req(badges_info)
badge_pieces <- c()
for(i in 1:nrow(badges_info)){
badge_pieces[[i]] <- tippy::tippy(shiny::span(class="badge",badges_info$value[i],style=paste0("background-color:",badges_info$color[i],";","color:white;margin-left:0px;")),shiny::p(badges_info$description[i]))
}
p(badge_pieces, style = "font-size:1.25rem;")
})
#---------------- description render ---------------
output$description <- renderUI({
includeMarkdown("./text/description.md")
})
observeEvent(input$is_mobile_device, ignoreNULL = T, {
output$site_info <- renderUI({
box(width=12,
id = "site_info_box",
title= "Site Info",
icon = icon("info-circle"),
collapsible = T,
collapsed = input$is_mobile_device,
includeMarkdown("./text/site_info.md"))
})
})
#---------------- picture panel render ---------------
output$picture_panel <- renderUI({
ui_pieces <- c()
for(i in 1:length(unique(panel_data$rows))){
numbers <- panel_data %>%
filter(rows == i) %>%
pull(panels)
if(nrow(panel_data %>% filter(rows == i)) == 2){
ui_pieces[[i]] <- fluidRow(
column(width=6,
uiOutput(outputId = paste0(tolower(camera_info$camera_name)[numbers[1]],"_selection"))),
column(width=6,
uiOutput(outputId = paste0(tolower(camera_info$camera_name)[numbers[2]],"_selection")))
)
}
if(nrow(panel_data %>% filter(rows == i)) == 1){
ui_pieces[[i]] <- fluidRow(
column(width=6,
uiOutput(outputId = paste0(tolower(camera_info$camera_name)[numbers[1]],"_selection")))
)
}
}
ui_pieces
})
#-------------- Link to About section --------------
observeEvent(input$to_about_section, {
updateTabItems(session = session,
inputId = "nav",
selected = "About")
})
# Make sidebar disappear if viewing on mobile and menu item is clicked
observeEvent(input$nav,{
req(input$is_mobile_device == T)
addClass(selector = "body", class = "sidebar-collapse")
removeClass(selector = "body", class = "sidebar-open")
})
#-------------- Reactive Value Holders -------------
# Create a reactive values object to hold label button values
button_info <- reactiveValues()
# Get Traffic Cam Images
walk(.x = camera_info$camera_name, .f = function(.x){
time_reactive_list[[paste0(tolower(.x),"_time_reactive")]] <- get_cam(.x)
})
if(use_model){
walk(.x = camera_info$camera_name, .f = function(.x){
predict_reactive_list[[paste0(tolower(.x),"_predict_reactive")]] <- get_prediction(.x)
})
}
#--------------- Display Camera Feeds ----------------------
# 1. Build UI for Camera Image Displays
# Function to apply to each
render_cam_image <- function(cam_name, alt_name){
out_image <- renderImage({
outfile <- paste0(tmp_dir,"/",cam_name,'.jpg')
list(src = outfile,
alt = alt_name,
width = "100%"#, height="180px"
)
}, deleteFile=F)
return(out_image)
}
# Run Each Camera
walk(.x = camera_info$camera_name, .f = function(.x){
output[[paste0(tolower(.x),"_picture")]] <- render_cam_image(cam_name = .x,
alt_name = .x)
})
#--------------- Camera Feedback UI ----------------------
# 2. Display for image box / model classification
# Function to apply to each
# takes the camera name, the reactive time, and the model predictions
render_camera_ui_model <- function(cam_name, cam_time, model_prediction, tzone = project_info %>% filter(variable == "tzone") %>% pull(value), tzone_alias = project_info %>% filter(variable == "tzone_alias") %>% pull(value),id_suffix = ""){
model_predict_info <- model_prediction
model_prediction_val <- model_predict_info$prob * 100
model_prediction_class <- model_predict_info$label
cam_time_val <- cam_time
lst_time <- format(cam_time_val %>% lubridate::with_tz(tzone), "%m/%d/%Y %H:%M")
# string prep for naming patterns for UI elements
# option to add suffix for "_unsupervised" ui elements
name_lcase <- tolower(cam_name)
img_output_id <- str_c(name_lcase, "_picture", id_suffix)
radio_button_id <- str_c(name_lcase, "_button_select", id_suffix)
button_clear <- str_c(name_lcase, "_clear", id_suffix)
camera_button_ui <- renderUI({
div(class = "col-sm-12", style="padding:0px;",
div(class="card",
div(class = "card-header", style="font-size: 1.25rem; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; align-content: center; flex-wrap: nowrap;",
gsub("([a-z])([A-Z])", "\\1 \\2", cam_name),
span(class="badge",badges_info %>%
filter(value == model_prediction_class) %>%
pull(value),
style=paste0("background-color:",badges_info %>%
filter(value == model_prediction_class) %>%
pull(color),";color:white;"))
),
div(class="card-body",
div(style="text-align:center;",
# Display Cam Image
imageOutput(img_output_id,
height="100%"),
# Datetime for image
p(paste0("ML probability of ", model_prediction_class,": ", model_prediction_val,"%")),
p(paste0("Time: ", lst_time," ", tzone_alias)),
# Image label buttons
div(style="display:inline-block; text-align:center;",
shinyWidgets::radioGroupButtons(inputId = radio_button_id,
choiceNames = button_classes,
choiceValues = button_classes,
label=NULL,
selected = character(0))
),
# Clear selection button
div(style="display:inline-block",
actionButton(inputId = button_clear,
label = "Clear",
status = "secondary",
style="width:75px;"
)
)
)
)
)
)
})
#return the UI
return(camera_button_ui)
}
render_camera_ui_no_model <- function(cam_name, cam_time, tzone = project_info %>% filter(variable == "tzone") %>% pull(value), tzone_alias = project_info %>% filter(variable == "tzone_alias") %>% pull(value),id_suffix = ""){
cam_time_val <- cam_time
lst_time <- format(cam_time_val %>% lubridate::with_tz(tzone), "%m/%d/%Y %H:%M")
# string prep for naming patterns for UI elements
# option to add suffix for "_unsupervised" ui elements
name_lcase <- tolower(cam_name)
img_output_id <- str_c(name_lcase, "_picture", id_suffix)
radio_button_id <- str_c(name_lcase, "_button_select", id_suffix)
button_clear <- str_c(name_lcase, "_clear", id_suffix)
camera_button_ui <- renderUI({
div(class = "col-sm-12", style="padding:0px;",
div(class="card",
div(class = "card-header", style="font-size: 1.25rem; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; align-content: center; flex-wrap: nowrap;",
gsub("([a-z])([A-Z])", "\\1 \\2", cam_name)
),
div(class="card-body",
div(style="text-align:center;",
# Display Cam Image
imageOutput(img_output_id,
height="100%"),
# Datetime for image
p(paste0("Time: ", lst_time," ", tzone_alias)),
# Image label buttons
div(style="display:inline-block; ",
shinyWidgets::radioGroupButtons(inputId = radio_button_id,
choiceNames = button_classes,
choiceValues = button_classes,
label=NULL,
selected = character(0))
),
# Clear selection button
div(style="display:inline-block",
actionButton(inputId = button_clear,
label = "Clear",
status = "secondary",
style= "width:75px;"
)
)
)
)
)
)
})
#return the UI
return(camera_button_ui)
}
if(use_model){
observe({
walk(.x = camera_info$camera_name, .f = function(.x){
output[[paste0(tolower(.x), "_selection")]] <- render_camera_ui_model(
cam_name = .x,
cam_time = time_reactive_list[[paste0(tolower(.x), "_time_reactive")]],
model_prediction = predict_reactive_list[[paste0(tolower(.x), "_predict_reactive")]]
)
})
})
}
if(!use_model){
observe({
walk(.x = camera_info$camera_name, .f = function(.x){
output[[paste0(tolower(.x), "_selection")]] <- render_camera_ui_no_model(
cam_name = .x,
cam_time = time_reactive_list[[paste0(tolower(.x), "_time_reactive")]],
)
})
})
}
####____________________________####
####__ User Data Collection __####
#------------------ Reactive reset buttons ----------------
#####__ 1. Reset supervised buttons ####
# Edit button choiceNames and choiceValues
walk(.x = camera_info$camera_name, .f = function(.x){
observeEvent(input[[paste0(tolower(.x),"_clear")]],{
updateRadioGroupButtons(session = session,
inputId = paste0(tolower(.x),"_button_select"),
choiceNames = button_classes,
choiceValues = button_classes,
selected = character(0)
)
})
})
########### Reactive Button Info #######################
walk(.x = camera_info$camera_name, .f = function(.x){
observeEvent(c(input[[paste0(tolower(.x),"_button_select")]], input[[paste0(tolower(.x),"_clear")]]),{
button_info[[paste0(tolower(.x),"_button_info")]] <- input[[paste0(tolower(.x),"_button_select")]]
})
})
#------------------- Submit button for model 1 -------------------
# 1. Observe the user submission
observeEvent(input$submit,{
shinyalert(
inputId = "shinyalert",
title = "Submit?",
text = "Are you ready to submit your answers?",
size = "s",
closeOnEsc = FALSE,
closeOnClickOutside = FALSE,
html = FALSE,
type = "warning",
showConfirmButton = TRUE,
showCancelButton = TRUE,
confirmButtonText = "Yes",
confirmButtonCol = "#AEDEF4",
cancelButtonText = "No",
timer = 0,
imageUrl = "",
animation = TRUE
)
})
# 2. Put user data into table, push to google sheets:
# Final submission for model 1 (tab 1)
observeEvent(input$shinyalert == T,{
req(input$shinyalert)
shinyalert(
title = "Submitting responses...",
inputId = "submitting_alert",
showConfirmButton =F,
showCancelButton = F,
closeOnEsc = F,
animation = T,
text = "Please do not close the page or click 'Back'"
)
updateActionButton(session = session,
inputId = "submit",
label = "SUBMITTED!",
icon = icon("ok", lib = "glyphicon"))
# disables submit button
shinyjs::disable("submit")
###### Supervised Model Feedback ####
# Function to pull relevant camera data from models and feedback
store_cam_data_model <- function(cam_name, cam_time, model_prediction, button_response){
cam_data <- tibble(
"date" = c(cam_time),
"location" = c(cam_name),
"filename" = str_c(cam_name,"_",cam_time,".jpg"),
"model_score" = model_prediction$prob,
"model_class" = model_prediction$label,
"user_response" = ifelse(is.null(button_response), NA, button_response)
)
}
store_cam_data_no_model <- function(cam_name, cam_time, button_response){
cam_data <- tibble(
"date" = c(cam_time),
"location" = c(cam_name),
"filename" = str_c(cam_name,"_",cam_time,".jpg"),
"model_score" = NA,
"model_class" = NA,
"user_response" = ifelse(is.null(button_response), NA, button_response)
)
}
# Create reactive list to hold all of user and model data
data_reactive_list <- reactiveValues()
if(use_model){
walk(
.x = camera_info$camera_name,
.f = function(.x) {
data_reactive_list[[paste0(tolower(.x), "_data")]] <-
store_cam_data_model(
cam_name = .x,
cam_time = time_reactive_list[[paste0(tolower(.x), "_time_reactive")]],
model_prediction = predict_reactive_list[[paste0(tolower(.x), "_predict_reactive")]],
button_response = button_info[[paste0(tolower(.x), "_button_info")]]
)
}
)
}
if(!use_model){
walk(
.x = camera_info$camera_name,
.f = function(.x) {
data_reactive_list[[paste0(tolower(.x), "_data")]] <-
store_cam_data_no_model(
cam_name = .x,
cam_time = time_reactive_list[[paste0(tolower(.x), "_time_reactive")]],
button_response = button_info[[paste0(tolower(.x), "_button_info")]]
)
}
)
}
# Join tibbles of user and model data into one tibble
data <- map_dfr(reactiveValuesToList(data_reactive_list), bind_rows)
# Append data to google sheet
suppressMessages(googlesheets4::sheet_append(ss = sheets_ID,
data = data))
# Write pictures to Google Drive
purrr::map2(data$location, data$date, write_traffic_cam)
shinyalert(
inputId = "submitted_alert",
title = "Submitted!",
type = "success",
immediate = T,
animation = T,
text = project_info %>% filter(variable == "submit_success") %>% pull(value)
)
})
}
# Run the application
shinyApp(ui = ui, server = server)