fix logo
Browse files- app.py +16 -12
- requirements.txt +0 -3
app.py
CHANGED
@@ -27,21 +27,25 @@ div.stButton > button:first-child {
|
|
27 |
)
|
28 |
|
29 |
# Logo
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
# Title
|
37 |
# make title in center
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
)
|
45 |
|
46 |
############################################
|
47 |
# Hyperparameters
|
|
|
27 |
)
|
28 |
|
29 |
# Logo
|
30 |
+
st.write(
|
31 |
+
f"""
|
32 |
+
<div style="display: flex; justify-content: space-between; align-items: center;">
|
33 |
+
<img src="https://huggingface.co/spaces/SustainabilityLabIITGN/NDVI_PERG/resolve/main/Final_IITGN-Logo-symmetric-Color.png" style="width: 10%; margin-right: auto;">
|
34 |
+
<img src="https://huggingface.co/spaces/SustainabilityLabIITGN/NDVI_PERG/resolve/main/IFS.jpg" style="width: 10%; margin-left: auto;">
|
35 |
+
</div>
|
36 |
+
""",
|
37 |
+
unsafe_allow_html=True,
|
38 |
+
)
|
39 |
+
|
40 |
|
41 |
# Title
|
42 |
# make title in center
|
43 |
+
st.markdown(
|
44 |
+
f"""
|
45 |
+
<h1 style="text-align: center;">Vrinda (वृन्दा): Interactive Vegetation Index Analyzer</h1>
|
46 |
+
""",
|
47 |
+
unsafe_allow_html=True,
|
48 |
+
)
|
|
|
49 |
|
50 |
############################################
|
51 |
# Hyperparameters
|
requirements.txt
CHANGED
@@ -1,7 +1,4 @@
|
|
1 |
-
fastkml
|
2 |
geopandas
|
3 |
geemap
|
4 |
leafmap
|
5 |
pandas
|
6 |
-
geojson
|
7 |
-
utm
|
|
|
|
|
1 |
geopandas
|
2 |
geemap
|
3 |
leafmap
|
4 |
pandas
|
|
|
|