diego-ellis-soto commited on
Commit
1fe4980
·
1 Parent(s): 0fc1f65

Updated readme image

Browse files
Files changed (3) hide show
  1. R/.DS_Store +0 -0
  2. README.md +4 -0
  3. 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
+ ![Screenshot of the App](www/app_screenshot_1.png)
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
- 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,32 +309,32 @@ server <- function(input, output, session) {
309
  # Render logos
310
  # ------------------------------------------------
311
 
312
- output$uc_berkeley_logo <- renderImage({
313
- list(
314
- src = file.path("www", "UC_Berkeley_logo.png"),
315
- width = "80%",
316
- height = "55%",
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 = "80%",
325
- height = "55%",
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 = "80%",
334
- height = "55%",
335
- alt = "Reimagining San Francisco Logo"
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
  # ------------------------------------------------