YashMK89 commited on
Commit
a5d11e6
·
verified ·
1 Parent(s): ffd6783

update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -0
app.py CHANGED
@@ -1,6 +1,23 @@
1
  import streamlit as st
2
  import json
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  # Load dataset IDs from JSON file
5
  with open("datasets.json") as f:
6
  data = json.load(f)
 
1
  import streamlit as st
2
  import json
3
 
4
+ print(geemap.__version__)
5
+ print(folium.__version__)
6
+ print(geemap.Report())
7
+
8
+ st.set_page_config(layout="wide")
9
+ m = st.markdown(
10
+ """
11
+ <style>
12
+ div.stButton > button:first-child {
13
+ background-color: #006400;
14
+ color:#ffffff;
15
+ }
16
+ </style>""",
17
+ unsafe_allow_html=True,
18
+ )
19
+
20
+
21
  # Load dataset IDs from JSON file
22
  with open("datasets.json") as f:
23
  data = json.load(f)