diego-ellis-soto
commited on
Commit
·
1fe4980
1
Parent(s):
0fc1f65
Updated readme image
Browse files- R/.DS_Store +0 -0
- README.md +4 -0
- app.R +40 -40
R/.DS_Store
CHANGED
Binary files a/R/.DS_Store and b/R/.DS_Store differ
|
|
README.md
CHANGED
@@ -4,6 +4,9 @@ App.R runs both the ui and server side of the add and loads necessary objects in
|
|
4 |
|
5 |
The aim of this Shiny app is to provide decision support for the Reimagining San Francisco Initiative
|
6 |
|
|
|
|
|
|
|
7 |
This Shiny App takes:
|
8 |
|
9 |
Long/Lat on a mac by a users click OR typing of adress using geocoder.
|
@@ -14,6 +17,7 @@ The background then allows to identify biodiversity around a calculted isochrome
|
|
14 |
|
15 |
It further calculates a summary table of the GBIF data located within the isochrome
|
16 |
|
|
|
17 |
# Next steps: Optimize preanno of sf gbif and cbg
|
18 |
|
19 |
Add Imp Surf, Walking Scores, SVI to cbg_sf
|
|
|
4 |
|
5 |
The aim of this Shiny app is to provide decision support for the Reimagining San Francisco Initiative
|
6 |
|
7 |
+

|
8 |
+
|
9 |
+
|
10 |
This Shiny App takes:
|
11 |
|
12 |
Long/Lat on a mac by a users click OR typing of adress using geocoder.
|
|
|
17 |
|
18 |
It further calculates a summary table of the GBIF data located within the isochrome
|
19 |
|
20 |
+
|
21 |
# Next steps: Optimize preanno of sf gbif and cbg
|
22 |
|
23 |
Add Imp Surf, Walking Scores, SVI to cbg_sf
|
app.R
CHANGED
@@ -56,20 +56,20 @@ ui <- dashboardPage(
|
|
56 |
# Loading message
|
57 |
div(id = "loading", style = "display:none; font-size: 20px; color: red;", "Calculating..."),
|
58 |
|
59 |
-
fluidRow(
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
),
|
73 |
# fluidPage(
|
74 |
# # Application title
|
75 |
# # titlePanel("Test app"),
|
@@ -309,32 +309,32 @@ server <- function(input, output, session) {
|
|
309 |
# Render logos
|
310 |
# ------------------------------------------------
|
311 |
|
312 |
-
output$uc_berkeley_logo <- renderImage({
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
}, deleteFile = FALSE)
|
320 |
-
|
321 |
-
output$california_academy_logo <- renderImage({
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
}, deleteFile = FALSE)
|
329 |
-
|
330 |
-
output$reimagining_sf_logo <- renderImage({
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
}, deleteFile = FALSE)
|
338 |
|
339 |
|
340 |
# ------------------------------------------------
|
|
|
56 |
# Loading message
|
57 |
div(id = "loading", style = "display:none; font-size: 20px; color: red;", "Calculating..."),
|
58 |
|
59 |
+
# fluidRow(
|
60 |
+
# column(
|
61 |
+
# width = 2,
|
62 |
+
# imageOutput("uc_berkeley_logo")
|
63 |
+
# ),
|
64 |
+
# column(
|
65 |
+
# width = 4,
|
66 |
+
# imageOutput("california_academy_logo")
|
67 |
+
# ),
|
68 |
+
# column(
|
69 |
+
# width = 6,
|
70 |
+
# imageOutput("reimagining_sf_logo")
|
71 |
+
# )
|
72 |
+
# ),
|
73 |
# fluidPage(
|
74 |
# # Application title
|
75 |
# # titlePanel("Test app"),
|
|
|
309 |
# Render logos
|
310 |
# ------------------------------------------------
|
311 |
|
312 |
+
# output$uc_berkeley_logo <- renderImage({
|
313 |
+
# list(
|
314 |
+
# src = file.path("www", "UC_Berkeley_logo.png"),
|
315 |
+
# width = "50%",
|
316 |
+
# height = "45%",
|
317 |
+
# alt = "UC Berkeley Logo"
|
318 |
+
# )
|
319 |
+
# }, deleteFile = FALSE)
|
320 |
+
#
|
321 |
+
# output$california_academy_logo <- renderImage({
|
322 |
+
# list(
|
323 |
+
# src = file.path("www", "California_academy_logo.png"),
|
324 |
+
# width = "50%",
|
325 |
+
# height = "45%",
|
326 |
+
# alt = "California Academy Logo"
|
327 |
+
# )
|
328 |
+
# }, deleteFile = FALSE)
|
329 |
+
#
|
330 |
+
# output$reimagining_sf_logo <- renderImage({
|
331 |
+
# list(
|
332 |
+
# src = file.path("www", "Reimagining_San_Francisco.png"),
|
333 |
+
# width = "50%",
|
334 |
+
# height = "45%",
|
335 |
+
# alt = "Reimagining San Francisco Logo"
|
336 |
+
# )
|
337 |
+
# }, deleteFile = FALSE)
|
338 |
|
339 |
|
340 |
# ------------------------------------------------
|