-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathportals_dasboard_shiny.Rmd
executable file
·710 lines (585 loc) · 28.5 KB
/
portals_dasboard_shiny.Rmd
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
---
title: "OpenDataPortal"
output:
flexdashboard::flex_dashboard:
#source_code: "https://github.com/opengeoedu/opengeoedu.github.io/"
#social: [ "menu"] #doesn't work with iframe parent
orientation: rows
vertical_layout: fill
logo: oge_logo/icon_scaled.jpg
favicon: oge_logo/icon_scaled.jpg
theme: cosmo
css: ['css/dashboard.css', 'css/navbar.css']
includes:
after_body: footer.html
# in_header: header.txt
# navbar:
# - { title: "Impressum", href: "https://www.auf.uni-rostock.de/footer/impressum/", align: right , target: "_blank"}
# source_code: https://github.com/opengeoedu/opengeoedu.github.io
runtime: shiny
---
```{r global, include=FALSE}
library(leaflet)
library(flexdashboard)
library(DT)
library(htmltools)
library(crosstalk)
library(shiny)
library(shinyjs)
library(jsonlite) #for loading email conf
library(mailR)
library(ReporteRs)
DEBUG = FALSE
if(DEBUG) { #for debugging purposes, you might want to enable this script that pre-renders map (m), statistics (flext) and data table (portale), otherwise the data is loaded from a file where these intermnediate objects are cached for performance reasons, i.e. reducing the number of packages and data loaded into the app
source("R/portal_prerendering.R")
source("R/generate_stats.R")
} else {
load("out/prerendered_content.RData")
}
library(shiny)
library(shinyjs)
shiny::addResourcePath("icontemp", file.path(getwd(), "icontemp"))
shiny::addResourcePath("img", file.path(getwd(), "img"))
shiny::addResourcePath("out_geodata", file.path(getwd(), "out_geodata"))
shiny::addResourcePath("out", file.path(getwd(), "out"))
shiny::addResourcePath("data", file.path(getwd(), "data"))
shiny::addResourcePath("js", file.path(getwd(), "js"))
options(DT.options = list(language = list(url = '//cdn.datatables.net/plug-ins/1.10.15/i18n/German.json', responsive = TRUE, bPaginate = TRUE, autoWidth = TRUE, scrollX=TRUE)))
#-----------------------------------------------------------------------
```
Karte {data-icon="glyphicon-globe"}
=========================================================
```{r}
portalMapUI <- function(id) {
ns <- NS(id)
shiny::tagList(leafletOutput(ns("map")))
}
#m <- NULL
#withProgress(message = "Karte wird geladen...", expr ={
# m <<- createMap(portale, clustering = FALSE, layerControls=FALSE)
# setProgress(value = 1)
#})
#smallActive <- FALSE
#largeActive <- FALSE
# Server function
portalMap <- function(input, output, session) {
output$map <- renderLeaflet({
withProgress(message = "Karte wird geladen...", expr = {
isolate({
setProgress(value = 1)
## uncomment this when new leaflet-package is released:
# m <- addAllPortalMarkers(m = m, portale = portale, groupname = "portale", 35, 35, "") %>%
# showGroup("portale")
m
})
})
})
# observe({
# proxy <- leafletProxy("map")
# click<-input$map_shape_click
# if(is.null(click))
# return()
# #clearPopups seems not to work, so far
# proxy %>% clearPopups()
# print("popups should be cleared now!")
# })
# sd2 <- SharedData$new(portale, group = "portale")
##### USE THIS CODE WHEN NEW LEAFLET PACKAGE IS RELEASED:
#
# observe({
# if(length(input$map_zoom) == 1){
# proxy <- leafletProxy("map")
# }
# if(input$map_zoom < 8 && exists("proxy") && !smallActive){
# proxy %>% clearGroup("portale")
# proxy <- addAllPortalMarkers(m = proxy, portale = portale, groupname = "portale", 20, 20, "small_")
# smallActive <<- TRUE
# largeActive <<- FALSE
# proxy %>% showGroup("portale")
# } else if(input$map_zoom >= 8 && exists("proxy") && !largeActive){
# proxy %>% clearGroup("portale")
# proxy <- addAllPortalMarkers(m = proxy, portale = portale, groupname = "portale", 35, 35, "")
# largeActive <<- TRUE
# smallActive <<- FALSE
# proxy %>% showGroup("portale")
# }
# })
###########################################################
# sd2 <- SharedData$new(portale, group = "portale")
#
#
# observe({
# if(length(input$map_zoom) == 1){
# proxy <- leafletProxy("map")
# }
#
# isolate({
# # .data <- reactiveValues(portals = sd2$data())
# if(input$map_zoom < 8 && exists("proxy")){
# proxy %>% clearGroup("portale_small")
# proxy <- addAllPortalMarkers(proxy,portale = sd2, "portale_small", 20, 20, "small_")
# }
# }
# )
#
# })
#
# observe({
#
# if(input$map_zoom >= 8 && exists("proxy")){
#
# proxy %>% hideGroup("portals") %>%
# showGroup("adm5") %>%
# showGroup("adm6") %>%
# showGroup("portals")
# }
#
# })
# output$map <- renderLeaflet({
# withProgress(message = "Karte wird geladen...", expr = {
# isolate({
# m <<- createMap(portale,
# clustering = FALSE,
# layerControls = FALSE)
# })
# setProgress(value = 1)
# m
# })
# })
# runjs("alert(document.getElementsByClassName('leaflet-marker-icon').length);")
# observe({
# if(length(input$map_zoom) == 1){
# proxy <- leafletProxy("map")
# if(input$map_zoom >= 9){
# proxy %>% showGroup("adm6_labels")
# }else if(input$map_zoom < 9){
# proxy %>% hideGroup("adm6_labels")
# }
#
# if(input$map_zoom >= 8){
#
# proxy %>% hideGroup("portals") %>%
# showGroup("adm5") %>%
# showGroup("adm6") %>%
# showGroup("portals")
# }else if(input$map_zoom < 8){
# proxy %>% hideGroup("adm5") %>%
# hideGroup("adm6")
# }
# if(input$map_zoom >= 7){
# proxy %>% hideGroup("portals") %>%
# showGroup("adm4_labels") %>%
# showGroup("portals")
# }
# if(input$map_zoom < 7){
# proxy %>% hideGroup("portals") %>%
# hideGroup("adm4_labels") %>%
# showGroup("portals")
# }}
#
# })
}
# call the module
portalMapUI("oge")
callModule(portalMap, "oge")
```
Tabelle {data-icon="glyphicon-list"}
=========================================================
```{r fig.height=8.5}
tags$div(align="middle", style="text-align:center", class="main-filter-group",
bscols(widths = c(6,6),
div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", filter_checkbox("bezug_portal", "Portal-Typ", sd, ~Typ_names, inline = FALSE, allLevels = TRUE, columns = 2)
),
div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", tagList(
filter_checkbox("bezug_check", "Reichweite", sd, ~Reichweite, inline = FALSE, columns = 2), tags$div(filter_select(id="country_select", "Länder-Filter: ", sd, ~Land), style="max-width:300px")
)
)
)
)
#customize the country selection box with javascript
htmltools::tags$script(id="country_select_map", type= "application/json",
country_json)
div(class="metawrapper", style="height:75%",
#div(style="height:100%",
htmltools::tagList(
DT::datatable(sd_table, escape = FALSE, extensions = c("Responsive"),
options = list(
columnDefs= list(list(responsivePriority= 12000, targets=2),
list(type="range-order", targets=-1)),
order = list(list(4, 'asc'), list(3, 'asc'))
)
, elementId = "portals_table")
)
)
#)
#tags$script(type = "text/javascript", href = "//cdn.datatables.net/plug-ins/1.10.16/sorting/enum.js")
# tags$script(type = "text/javascript", "
# $.fn.dataTable.enum( [ 'international', 'national', 'regional','kommunal' ] );
# $('#portals_table').DataTable();
# ")
```
Filter {data-icon="ion-settings" .hidden}
=========================================================
```{r}
### filtergroup 2
# sd2 <- SharedData$new(portale, group = "portals_small")
#
# tags$div(align="middle", style="text-align:center", class="main-filter-group",
# bscols(widths = c(6,6),
# div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", filter_checkbox("bezug_portal", "Portal-Typ", sd2, ~Typ_names, inline = FALSE, allLevels = TRUE, columns = 2)
# ),
# div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", tagList(
# filter_checkbox("bezug_check", "Reichweite", sd2, ~Reichweite, inline = FALSE, columns = 2), tags$div(filter_select(id="country_select", "Länder-Filter: ", sd2, ~Land), style="max-width:300px")
# )
# )
# )
# )
#make a checkbox-row according to croosstalk
makerow <- function(value, label){
tags$div(class="checkbox", tags$label(class="checkbox_container", list(
tags$input(class="crosstalk_checkbox", value = value, type="checkbox", onChange = paste0("toggleFilter('",value,"', this)")),
tags$span(class="checkmark"),
tags$span(class="checkbox_label", label)
)))
}
#devide rows into n columns
makecols <- function(rows,n){
step <- ceiling(length(rows)/n)
sel1 <- seq(1, length(rows), by = step)
sel2 <- sel1 + (step -1)
sel2[length(sel2)] <- n*step
mapply(function(a,b){
tags$div(class="crosstalk-options-column",
tagList(
rows[a:b]
)
)
}, a = sel1, b = sel2, SIMPLIFY = FALSE)
}
makefiltergroup <-function(values, labels, heading){
tags$div(style="display:inline-block; text-align:left",
tags$label(class="control-label",heading),
tags$div(class = "form-group crosstalk-input-checkboxgroup crosstalk-input crosstalk-input-bound shiny-bound-input",
tags$div(class="crosstalk-options-group",
makecols(
mapply(makerow, value=values, label=labels, SIMPLIFY = FALSE)
, 2
)
)
)
)
}
tags$div(align="middle", style="text-align:center",
bscols(widths = c(6,6),
makefiltergroup(levels(portale$Typ_names), levels(portale$Typ_names), "Portal-Typ"),
makefiltergroup(levels(portale$Reichweite), levels(portale$Reichweite), "Reichweite")
)
)
# tags$div(align="middle", style="text-align:center",
# bscols(widths = c(6,6),
# div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", filter_checkbox("bezug_portal2", "Portal-Art", sd, ~Typ, inline = TRUE)),
# div(style="display:inline-block; text-align:left",title="Aktivierte Datenfilter sind sowohl auf der Karte als auch in der Tabelle wirksam", filter_checkbox("bezug_check2", "Räumlicher Bezug", sd, ~Bezug, inline = TRUE))
# )
# )
```
Metadaten {data-icon="glyphicon-download"}
=========================================================
Die dargestellten Geodaten zu den Open Data Portalen und GDIs in Deutschland, Österreich und Schweiz können in verschiedenen Dateiformaten heruntergeladen werden. Beachten Sie, dass die Koordinaten sich überlappender Punkte zwecks besserer Darstellung leicht verschoben wurden. Alle Koordinaten sind in Längen- und Breitengraden angegeben (Tabellenspalten mit Namen "lon" und "lat") und beziehen sich auf das Datum WGS84. Die eventuell aktivierten Auswahl-Filter wirken sich nicht auf den Download-Bereich aus. Alle Einträge und Metadaten sind vollschändig im jeweiligen Download enthalten.
* [CSV Tabelle](out_geodata/portale_shifted.csv)
* [geojson](out_geodata/portale_shifted.geojson)
* [GeoPackage](out_geodata/portale_shifted.gpkg)
* [Geography Markup Language (GML)](out_geodata/portale_shifted.gml)
* [Keyhole Markup Language (KML)](out_geodata/portale_shifted.kml)
* [ESRI Shapefile (ZIP-Archiv)](out_geodata/portale_shifted-ESRI-Shapefile.zip)
Die geokodierten Rohdaten (mit überlappenden Koordinaten) sind als CSV-Tabelle verfügbar:
* [Rohdaten (CSV Tabelle)](data/portale_geocoded4.csv)
<br/>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank"><img alt="Creative Commons Lizenzvertrag" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />Die hier bereitgestellten Metadaten sind lizenziert unter einer <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz</a>. Bitte [kontaktieren](http://www.opengeoedu.de/kontakt) Sie das OpenGeoEdu-Team bei diesbezüglichen Fragen oder falls die Daten auf eine andere Weise nutzen möchten.
Statistik {data-icon="ion-stats-bars"}
=========================================================
Die nachfolgende Tabelle gibt einen Überblick über die gegenwärtig eingetragenen Datenportale und ist von links nach rechts zu lesen. Die linke Spalte gibt die Anzahl der Einträge nach Typ des Portales (Open Data Portal oder GDI-Knotenpunkt bzw. Geoportal) an. Die Spalte rechts daneben gibt, nach Portal-Typ aufgeschlüsselt, das Land an, in welchem das Portal bzw. der Herausgeber der Inhalte verortet ist. In einigen Fällen beteiligen sich mehrere Länder an einem Portal (Beispiel: <a href="http://www.georhena.eu/" target="_blank">GeoRhena</a>, ein deutsch/französisch/schweizer Projekt zur Erfassung der Oberrhein-Region). Diese Portale sind hier als *länderübergreifend* kategorisiert. Die rechten vier Spalten schlüsseln die Portale nach ihrer Reichweite, spezifisch für jedes Land und jede Portal-Art, auf. Dabei halten kommunale Portale Daten über einzelne Kommunen, Landkreise oder Städte bereit. Regionale Portale beziehen sich auf einzelne Regionen oder Bundesländer. Nationale Portale halten für ein bestimmtes Land umfassende Daten bereit. Internationale Portale führen Daten über mehrere Länder, Kontinente oder weltweite Datensätze.
```{r echo=FALSE, tidy=TRUE}
tags$div(class = "statwrapper", HTML(statistics_html))
# for rendering the original flextable-object (reacitvely):
#tags$div(class = "statwrapper", renderFlexTable(flext))
```
<a href="out/verzeichnis_statistik.docx" download><button class="btn"><i class="fa fa-download"></i> Download Statistik (.docx)</button></a>
<a href="out/verzeichnis_haeufigkeitsverteilung.csv" download><button class="btn"><i class="fa fa-download"></i> Download Haufigkeitsverteilung (.csv)</button></a>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank"><img alt="Creative Commons Lizenzvertrag" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />Die hier bereitgestellten Metadaten sind lizenziert unter einer <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz</a>. Bitte [kontaktieren](http://www.opengeoedu.de/kontakt) Sie das OpenGeoEdu-Team bei diesbezüglichen Fragen oder falls die Daten auf eine andere Weise nutzen möchten.
Neuer Eintrag / Korrektur {data-icon="ion-compose"}
=========================================================
```{r out.height="800px"}
outputDir <- "data/user_input"
saveData <- function(data) {
if(!dir.exists(outputDir)){
dir.create(outputDir)
}
data <- t(data)
# Create a unique file name
fileName <- sprintf("Edits_%s_%s.csv", as.integer(Sys.time()), digest::digest(data))
# Write the file to the local system
write.csv(
x = data,
file = file.path(outputDir, fileName),
row.names = FALSE, quote = TRUE
)
}
# automated emails will only work with email-templates and server setup configured
sendEmail <- function(data){
require(mailR)
require(jsonlite)
require(stringr)
email <- data[["Email"]]
autor <- data[["Autor"]]
newsletter <- as.logical(data[["Newsletter"]])
# print(summary(data))
# print(data)
# print(names(data))
# print(class(data))
# dnames <- names(data)
# data <- t(data.frame(data))
# colnames(data) <- dnames
#data <- data[,!colnames(data) %in% c("Email", "Autor")]
#print(data)
#shinyjs::alert(dim(data)[1])
#data <- t(data)
#data <- data[!names(data) %in% c("Email", "Autor")]
nms <- names(data)
nms <- str_replace(nms,"^Oeffentlich$","Öffentlich")
nms <- str_replace(nms,"^Adresse_Herausgeber$","Adresse / Koordinaten des Herausgebers")
names(data) <- nms
data[["Typ"]] <- table_meta$typ_names[which(table_meta$typ == data[["Typ"]])]
if(file.exists("config/email1.conf") && file.exists("config/message.html") ){
# shinyjs::alert("Try sending mail!")
## Send confirmation Email
message <- readLines("config/message.html")
## create visual summary table of the submission:
table <- FlexTable(
as.data.frame(data[!names(data) %in% c("Email", "Autor","Newsletter","Einverstaendnis")]),
add.rownames = TRUE,
header.columns = FALSE,
body.cell.props = cellProperties(padding = 5)
)
table[,1] <- textBold()
html_table <- as.html(table)
summary_text <- html_table
## Add Email-Newsletter notification to confirmation email
if(newsletter){
summary_text <- paste0(summary_text,
tags$br(),
tags$b("Ihrem Wunsch gemäß werden wir Ihre E-Mail-Adresse dem Newsletter-Verteiler von OpenGeoEdu hinzufügen. Mit einer kurzen Nachricht an info@opengeoedu.de können diese jederzeit wieder austragen lassen.")
)
}
message <- str_replace(message, "\\[ZUSAMMENFASSUNG\\]", summary_text)
message <- str_replace(message, "\\[ANREDE\\]", paste0("Guten Tag ",autor,","))
email_config = read_json("config/email1.conf",simplifyVector = TRUE)
attach(email_config)
if(str_detect(email, "^.*@.*\\..*$")){
tryCatch(send.mail(from=from,
to=email,
encoding = "utf-8",
authenticate = TRUE,
body = paste(message, collapse = "\n"),
html = TRUE,
inline = TRUE,
subject = subject,
smtp = list(host.name=host.name, port=as.numeric(email_config$port), tls=TRUE, ssl=FALSE, user.name=from, passwd=pwd)
), error=function(e){shinyjs::alert(e)}
)
}
## Mail to OGE-TEAM
##thanks mailto: (template for confirmation after mergin submission)
thanks_mailto <- ""
if(file.exists("config/thanks_message.txt")){
thanks_message <- readLines("config/thanks_message.txt") %>%
str_replace("\\[AUTOR\\]", autor) %>%
str_replace("\\[BEITRAG\\]", data[["Titel"]])
thanks_message <- tags$a(href=
#paste0("mailto:",autor," <",email,">",
paste0("mailto:",email,
"?subject=[OpenGeoEdu] Ihr Beitrag wurde veröffentlicht",
"&body=",thanks_message
),
"Nach Veröffentlichung Dank-Email verfassen!")
thanks_mailto <- tags$p("PS:", thanks_message)
}
table <- FlexTable(
as.data.frame(data),
add.rownames = TRUE,
header.columns = FALSE,
body.cell.props = cellProperties(padding = 5)
)
table[,1] <- textBold()
html_table <- as.html(table)
message <- paste0(
"Liebes OpenGeoEdu-Team,",
tags$p("ein Nutzer hat einen Neuen Beitrag zum OpenDataPortal eingesendet."),
html_table,
tags$p("Bitte kontrollieren Sie die Angaben."),
tags$p("Es grüßt"),
tags$p("das OpenDataPortal"),
thanks_mailto,
collapse="\n")
## personalize email subject if autor is given
vonautor <- ""
if (!is.na(autor) && autor != ''){
vonautor <- paste(" von",autor)
}
tryCatch(send.mail(from="OpenDataPortal (noreply) <portal@opengeoedu.de>",
to=from,
encoding = "utf-8",
authenticate = TRUE,
body = paste(message, collapse = "\n"),
html = TRUE,
inline = TRUE,
subject = paste0("Neuer Eintrag",vonautor),
smtp = list(host.name=host.name, port=as.numeric(email_config$port), tls=TRUE, ssl=FALSE, user.name=from, passwd=pwd),
error=function(e){shinyjs::alert(e)}
))
# sendmail_options("message-content-type" = "html", message_content_type = "html")
#mailControl=list(smtpServer=host.name, smtpPortSMTP=port, "message-content-type" = "html")
#sendmail(from=from,
# to=test_to,
# subject=subject,
# msg=message,
# control=mailControl,
# verbose=TRUE)
detach(email_config, unload = TRUE)
rm(email_config)
}
}
loadData <- function() {
# Read all the files into a list
files <- list.files(outputDir, full.names = TRUE)
files <- files[stringr::str_detect(files,"\\.csv$")]
if(length(files)==0)
return(NULL)
data <- lapply(files,
function(file){
entry <- read.csv(file, stringsAsFactors = FALSE)
entry <- entry[!colnames(entry) %in% c("Email", "Einverstaendnis","Newsletter")] #exclude colums from being displayed
entry
})
# Concatenate all data together into one data.frame
data <- do.call(rbind, data)
data
}
shinyApp(
ui = fluidPage(
shinyjs::useShinyjs(),
id = "submit-form",
numericInput("ID", label = "ID (bei vorhandenen Einträgen)", min = 1, max = dim(portale)[1], value = NA_integer_, step = 1),
textInput("Titel", label = "Titel", placeholder = "Titel der Website"),
textInput("URL", label = "URL", placeholder = "https://www.beispiel.de"),
textAreaInput("Beschreibung", label = "Beschreibung", placeholder = "Kurze Beschreibung des Open Data Portals oder der GDI", width = "400px", height = "100px"),
radioButtons("Typ", "Art des Portals:",
choiceNames =
table_meta$typ_names,
choiceValues =
table_meta$typ,
inline = TRUE,
),
textInput("Ort", label = "Ort (Bezug des Portals)", placeholder = "Gemeinde, Land oder Region"),
radioButtons("Reichweite", "Reichweite:",
choices =
table_meta$reichw, inline = TRUE,
),
textInput("Adresse_Herausgeber", label = "Adresse des Herausgebers oder Koordinaten zur Geolokalisierung des Portals", placeholder = "52.5161 N, 13.3777 E / Pariser Platz, 10117 Berlin", width = "400px"),
radioButtons("Oeffentlich", "Staatlich / Öffentlich",
choiceNames =
table_meta$staatl,
choiceValues =
table_meta$staatl, inline = TRUE,
), title = "Portal eintragen / editieren",
tags$hr(),
textInput("Autor", label = "Kontakt (Optional)", placeholder = "Ihr Name"),
#tags$input(id="Email",name="Email", type="Email", placeholder="Ihre E-Mail-Adresse"),
textInput("Email",NULL, placeholder = "Ihre E-Mail-Adresse"),
checkboxInput("Einverstaendnis", "Ich willige hiermit in die Verarbeitung meiner personenbezogenen Daten ein. Diese dient ausschließlich zur Kontaktaufnahme im Rahmen des Projektes OpenGeoEdu der Universität Rostock"),
"\t(Siehe ", tags$a("Datenschutzerklärung", href="https://www.uni-rostock.de/footer/datenschutz/"),")",
checkboxInput("Newsletter", "Ich bin am Newsletter interessiert."),
tags$hr(),
tags$head(
tags$style(HTML('#submit{background-color:#009de0;; color: white;} #submit:hover{background-color:#e7e7e7; color: black;} '))
),
actionButton("submit","Anfrage senden"), actionButton("reset","Formular zurücksetzen"),
tags$hr(),
"Offene Anfragen:"
,DT::dataTableOutput("responses")
),
server = function(input, output, session){
observe({
id <- input$ID
if(!is.na(id) && is.numeric(id)){
updateTextInput(session, inputId = "Titel", value = portale$Titel[id])
updateTextInput(session, inputId = "URL", value = portale$URL[id])
updateRadioButtons(session, inputId = "Typ", selected = portale$Typ[id])
updateTextAreaInput(session, inputId = "Beschreibung", value = portale$Beschreibung[id])
updateRadioButtons(session, inputId = "Reichweite", selected = portale$Reichweite[id])
coords <- paste0(portale[id,"lat"]," N, ", portale[id,"lon"]," E ")
updateTextInput(session, inputId = "Adresse_Herausgeber", value = coords)
updateTextInput(session, inputId = "Ort", value = portale$Ort[id])
updateRadioButtons(session, inputId = "Oeffentlich", selected = portale$Staatlich_Öffentlich[id])
}
})
# Whenever a field is filled, aggregate all form data
formData <- reactive({
data <- sapply(c("Titel","URL","Typ","Beschreibung","Reichweite", "Adresse_Herausgeber", "Ort", "Oeffentlich", "Autor", "Email","Einverstaendnis", "Newsletter"), function(x) input[[x]])
data
})
# When the Submit button is clicked, save the form data
observeEvent(input$submit, {
formdata <- formData()
if((formdata["Email"] !=""|| formdata["Autor"] != "")
&& !as.logical(formdata["Einverstaendnis"])){
shinyjs::alert("Hinweis: Bitte bestätigen Sie die Einverständniserklärung damit wir die von Ihnen eingegebenen personenbezogenen Angaben (Name/E-Mail) vearbeiten können.\n\nFalls Sie Ihren Beitrag anonym einsenden möchten, entfernen Sie bitte die betreffenden Angaben aus Formular.")
}else{
saveData(formdata)
sendEmail(formdata)
shinyjs::alert("Vielen Dank!\nIhre Anfrage wurde gesendet und wird bald bearbeitet.")
shinyjs::reset("submit-form")
output$responses <- DT::renderDataTable({
input$submit
loadData()
}, extensions = "Responsive")
}
})
observeEvent(input$reset, {
shinyjs::reset("submit-form")
})
# Show the previous responses
# (update with current response when Submit is clicked)
output$responses <- DT::renderDataTable({
input$submit
loadData()
}, extensions = "Responsive")
}
)
if(DEBUG){
library(containerit)
df <- dockerfile(maintainer = "OpenGeoEdu", image = "rocker/geospatial")
write(df, file = "out/Dockerfile2")
}
```
Impressum
=========================================================
#### Herausgeber:
Professur für Geodäsie und Geoinformatik
Universität Rostock
18051 Rostock
Tel. 03824983200
Fax. 03814983202
Email: Bitte nutzen Sie das [Kontaktformular](https://www.opengeoedu.de/kontakt.aspx)
<hr/>
#### Haftungsausschluss
Trotz intensiver und sorgfältiger Kontrolle haften die Herausgeber nicht für Richtigkeit, Aktualität und Vollständigkeit ihrer Webseiten. Wir weisen ausdrücklich darauf hin, dass die Inhalte sämtlicher Webseiten, die über externe Links auf der Webseite erreichbar sind, ausschließlich von den Betreibern dieser Webseiten verantwortet werden. Jegliche Haftung für die Inhalte entsprechend verlinkter Seiten ist damit ausgeschlossen.
<hr/>
#### Urheberrechte
Sämtliche Urheberrechte an Texten, Bildern, Tabellen und grafischen Darstellungen, die auf den Webseiten öffentlich gemacht werden, liegen - soweit nicht anders kenntlich gemacht - bei der Universität Rostock. Jegliche, auch auszugsweise Verwendung und Verbreitung in jedweder medialen Form bedarf der ausdrücklichen schriftlichen Genehmigung durch die Universität Rostock.
#### Datenschutzerklärung
<a href https://www.uni-rostock.de/footer/datenschutz/" target="_blank">Datenschutzerklärung </a>
#### Piwik/Matomo Opt-out
<iframe src="https://www.opengeoedu.de/analytics/index.php?module=CoreAdminHome&action=optOut&language=de" frameborder="0"
style="all: initial; height: 20vh; width:100%; max-width: 900px">
</iframe>
<script src="js/oge.js"> </script>