Spaces:
Running
Running
requirements
Browse files- .gitignore +1 -0
- app.py +1 -2
- requirements.txt +11 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.ipynb_checkpoints
|
app.py
CHANGED
@@ -21,5 +21,4 @@ m.add_gdf(city, paint = {
|
|
21 |
"fill-color": ["get", "fill"], # color by the column called "fill"
|
22 |
"fill-opacity": 0.8,
|
23 |
})
|
24 |
-
m.to_streamlit()
|
25 |
-
|
|
|
21 |
"fill-color": ["get", "fill"], # color by the column called "fill"
|
22 |
"fill-opacity": 0.8,
|
23 |
})
|
24 |
+
m.to_streamlit()
|
|
requirements.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pandas
|
2 |
+
seaborn
|
3 |
+
ibis-framework[duckdb]
|
4 |
+
nbval
|
5 |
+
leafmap[maplibre]
|
6 |
+
geopandas
|
7 |
+
pystac-client
|
8 |
+
odc-stac
|
9 |
+
rioxarray
|
10 |
+
exactextract
|
11 |
+
git+https://github.com/eodaGmbH/py-maplibregl@feature/color-utils
|