giswqs commited on
Commit
da17d62
1 Parent(s): 81b8812

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -13,5 +13,7 @@ right_url = 'https://opendata.digitalglobe.com/events/california-fire-2020/post-
13
  left_input = gr.Textbox(value=left_url, label="Left Layer URL")
14
  right_input = gr.Textbox(value=right_url, label="Right Layer URL")
15
 
16
- demo = gr.Interface(split, [left_input, right_input], "html")
 
 
17
  demo.launch()
13
  left_input = gr.Textbox(value=left_url, label="Left Layer URL")
14
  right_input = gr.Textbox(value=right_url, label="Right Layer URL")
15
 
16
+ title = 'Gradio for Geospatial Applications'
17
+ description = 'Visualizing geospatial datasets with Gradio and leafmap'
18
+ demo = gr.Interface(split, [left_input, right_input], "html", title=title, description=description)
19
  demo.launch()