giswqs commited on
Commit
7dde298
1 Parent(s): 0d5dd0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,7 +18,7 @@ years = ['2001', '2004', '2006', '2008', '2011', '2013', '2016', '2019']
18
  left_input = gr.Dropdown(years, value='2001', label="Year of Left Layer")
19
  right_input = gr.Dropdown(years, value='2019', label="Year of Right Layer")
20
 
21
- title = 'Visualizing National Land Cover Database (NLCD)'
22
- description = 'Developing interactive web app with gradio, geemap, and Earth Engine'
23
  demo = gr.Interface(split, [left_input, right_input], "html", title=title, description=description)
24
  demo.launch()
18
  left_input = gr.Dropdown(years, value='2001', label="Year of Left Layer")
19
  right_input = gr.Dropdown(years, value='2019', label="Year of Right Layer")
20
 
21
+ title = 'Interactive Earth Engine Web App with Gradio and Geemap'
22
+ description = 'Visualizing any Earth Engine datasets, such as the National Land Cover Database (NLCD)'
23
  demo = gr.Interface(split, [left_input, right_input], "html", title=title, description=description)
24
  demo.launch()