forked from woobe/rugsmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.R
355 lines (272 loc) · 12.4 KB
/
server.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
library(shiny)
library(rMaps)
library(rCharts)
library(ggmap)
library(markdown)
library(dplyr)
shinyServer(function(input, output, session) {
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Function]: Fixing invalid multibyte strings (needed for HTML output)
# Source: http://tm.r-forge.r-project.org/faq.html#Encoding
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fix_mbs <- function(x) iconv(enc2utf8(x), sub = "byte")
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Function]: Setting the approximate map center
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
set_center <- function(loc = 'all') {
if (loc == 'all') return(data.frame(lon = 10, lat = 15))
}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Main Function]: Create Leaflet rMaps
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
create_map <- function(map_region = NULL,
map_country = NULL,
map_zoom = 2,
map_type = 'Stamen.TonerLite',
map_width = 1100,
map_height = 600) {
# load data
trials <- read.csv("./data/simple_overview_modified.csv", stringsAsFactors=FALSE)
# eventually subset trials for this specific map render based on filters
row_subset <- 1:nrow(trials)
trials <- trials[row_subset, ]
# center map on world for now
geo_center <- set_center('all')
# create and config map_base
map_base <- rMaps::Leaflet$new()
map_base$params$width <- map_width
map_base$params$height <- map_height
map_base$tileLayer(provider = map_type)
map_base$setView(c(geo_center$lat, geo_center$lon), map_zoom)
# per site markers with multiple trials
sites <-
tbl_df(trials) %>%
filter(!is.na(siteGNId))
unique_sites <-
sites %>%
select(Country, Site, sitelat, sitelon, siteGNId) %>%
distinct()
for(i in 1:nrow(unique_sites) ) {
site <- unique_sites[i, ]
trial <- sites %>% filter(siteGNId == site$siteGNId)
site.label <- paste0("Site: <b>", site$Site, ", ", site$Country, "</b><br><br>")
trial.labels <- paste0("Intervention: <b>", trial$Product, "</b><br>",
"Phase: <b>", trial$Phase, "</b><br>",
"PI: <b>", trial$PI, "</b><br>", collapse="<br>")
popup.label <- paste0(site.label, trial.labels)
map_base$marker(c(site$sitelat, site$sitelon), bindPopup = popup.label)
}
# per country markers with multiple trials
countries <-
tbl_df(trials) %>%
filter(is.na(siteGNId))
unique_countries <-
countries %>%
select(Country, lat, lon, countryGNId) %>%
distinct() %>%
filter(!is.na(countryGNId))
for(i in 1:nrow(unique_countries) ) {
country <- unique_countries[i, ]
trial <- countries %>% filter(countryGNId == country$countryGNId)
country.label <- paste0("Country: <b>", country$Country, "</b><br><br>")
trial.labels <- paste0("Intervention: <b>", trial$Product, "</b><br>",
"Phase: <b>", trial$Phase, "</b><br>",
"PI: <b>", trial$PI, "</b><br>", collapse="<br>")
popup.label <- paste0(country.label, trial.labels)
map_base$marker(c(country$lat, country$lon), bindPopup = popup.label)
}
return(map_base)
}
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (All Groups)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_all <- renderUI({
# Create map_base
map_base <- create_map(NULL, NULL, 2)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_all"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: Asia)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_asia <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'Asia', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_asia"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: Europe)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_europe <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'Europe', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_europe"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: North America)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_n_america <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'North America', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_n_america"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: Middle East or Africa)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_mea <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'Middle East or Africa', map_zoom = 3)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_mea"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: Oceania)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_oceania <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'Oceania', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_oceania"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (By Region: South or Central America)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_sc_america <- renderUI({
# Create map_base
map_base <- create_map(map_region = 'South or Central America', map_zoom = 3)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_sc_america"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (United States)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_usa <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'United States', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_usa"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (Canada)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_canada <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'Canada', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_canada"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (Australia)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_australia <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'Australia', map_zoom = 4)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_australia"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (Germany)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_germany <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'Germany', map_zoom = 6)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_germany"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (India)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_india <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'India', map_zoom = 5)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_india"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (Japan)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_japan <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'Japan', map_zoom = 6)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_japan"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Interactive Map (United Kingdom)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$map_uk <- renderUI({
# Create map_base
map_base <- create_map(map_country = 'United Kingdom', map_zoom = 6)
# Generate HTML code, fix invalid multibyte strings and return
html_out <- HTML(map_base$html(chartId = "map_uk"))
html_out <- fix_mbs(html_out)
html_out
})
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Download Buttons for Original Data
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
csv_ori <- reactive({
read.csv("./data/simple_overview.csv", stringsAsFactors = FALSE)
})
output$dl_ori <- downloadHandler(
filename = function() {'simple_overview.csv'},
content = function(file) {write.csv(csv_ori(), file)}
)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Download Buttons for Modified Data
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
csv_mod <- reactive({
read.csv("./data/simple_overview_modified.csv", stringsAsFactors = FALSE)
})
output$dl_mod <- downloadHandler(
filename = function() {'simple_overview_modified.csv'},
content = function(file) {write.csv(csv_mod(), file)}
)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Table - Original Data
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$data_original <- renderDataTable({
# Read Original CSV
original <- read.csv("./data/simple_overview.csv", stringsAsFactors=FALSE)
# Return
original[, c("Product", "Phase", "Country", "Site", "PI")]
}, options = list(paging = FALSE, searching = FALSE))
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# [Output]: Table - Modified Data
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
output$data_modified <- renderDataTable({
# Read modified CSV
modified <- read.csv("./data/simple_overview_modified.csv", stringsAsFactors=FALSE)
# Return
modified[, c("Product", "Phase", "Country", "Site", "PI", "lat", "lon", "sitelat", "sitelon")]
}, options = list(paging = FALSE, searching = FALSE))
})