Skip to content

Commit

Permalink
working on #53
Browse files Browse the repository at this point in the history
  • Loading branch information
wcornwell committed Sep 14, 2023
1 parent 6d989f3 commit 1491220
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions infinity-app/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,11 @@ server <- function(input, output, session) {
# Handle CSV download
output$downloadData <- downloadHandler(
filename = function() {
name_bits <- gsub(".parquet", "", input$ala_path)
name_bits <- gsub("Australia-", "", name_bits)
paste(input$place,
"-",
gsub(".parquet", "", input$ala_path),
"-",input$buffer_size,"m-buffer-",
name_bits,
".csv",
sep = "")
},
Expand Down

0 comments on commit 1491220

Please sign in to comment.