Spaces:
Sleeping
Sleeping
onfarmview
commited on
Commit
·
9209524
1
Parent(s):
0bd39ac
first time
Browse files- app.py +18 -30
- pages/.DS_Store +0 -0
- pages/3_🪟_Split_Map.py +1 -1
app.py
CHANGED
@@ -5,44 +5,32 @@ st.set_page_config(layout="wide")
|
|
5 |
|
6 |
st.sidebar.info(
|
7 |
"""
|
8 |
-
|
9 |
-
|
10 |
"""
|
11 |
)
|
12 |
|
13 |
st.sidebar.title("Contact")
|
14 |
-
st.sidebar.info(
|
15 |
-
"""
|
16 |
-
Qiusheng Wu at [wetlands.io](https://wetlands.io) | [GitHub](https://github.com/giswqs) | [Twitter](https://twitter.com/giswqs) | [YouTube](https://www.youtube.com/c/QiushengWu) | [LinkedIn](https://www.linkedin.com/in/qiushengwu)
|
17 |
-
"""
|
18 |
-
)
|
19 |
|
20 |
-
st.
|
21 |
|
22 |
-
st.
|
23 |
-
"""
|
24 |
-
This multi-page web app demonstrates various interactive web apps created using [streamlit](https://streamlit.io) and open-source mapping libraries,
|
25 |
-
such as [leafmap](https://leafmap.org), [geemap](https://geemap.org), [pydeck](https://deckgl.readthedocs.io), and [kepler.gl](https://docs.kepler.gl/docs/keplergl-jupyter).
|
26 |
-
This is an open-source project and you are very welcome to contribute your comments, questions, resources, and apps as [issues](https://github.com/giswqs/streamlit-geospatial/issues) or
|
27 |
-
[pull requests](https://github.com/giswqs/streamlit-geospatial/pulls) to the [GitHub repository](https://github.com/giswqs/streamlit-geospatial).
|
28 |
|
29 |
-
"""
|
30 |
-
)
|
31 |
|
32 |
-
st.info("Click on the left sidebar menu to navigate to the different apps.")
|
33 |
|
34 |
-
st.subheader("Timelapse of Satellite Imagery")
|
35 |
-
st.markdown(
|
36 |
-
|
37 |
-
|
38 |
-
"""
|
39 |
-
)
|
40 |
|
41 |
-
row1_col1, row1_col2 = st.columns(2)
|
42 |
-
with row1_col1:
|
43 |
-
|
44 |
-
|
45 |
|
46 |
-
with row1_col2:
|
47 |
-
|
48 |
-
|
|
|
5 |
|
6 |
st.sidebar.info(
|
7 |
"""
|
8 |
+
Web App URL: <https://onfarmview.com/>
|
9 |
+
|
10 |
"""
|
11 |
)
|
12 |
|
13 |
st.sidebar.title("Contact")
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
+
st.sidebar.markdown('<a href="mailto:[email protected]">Contact us !</a>', unsafe_allow_html=True)
|
16 |
|
17 |
+
st.title("On Farm View")
|
|
|
|
|
|
|
|
|
|
|
18 |
|
|
|
|
|
19 |
|
20 |
+
# st.info("Click on the left sidebar menu to navigate to the different apps.")
|
21 |
|
22 |
+
# st.subheader("Timelapse of Satellite Imagery")
|
23 |
+
# st.markdown(
|
24 |
+
# """
|
25 |
+
# The following timelapse animations were created using the Timelapse web app. Click `Timelapse` on the left sidebar menu to create your own timelapse for any location around the globe.
|
26 |
+
# """
|
27 |
+
# )
|
28 |
|
29 |
+
# row1_col1, row1_col2 = st.columns(2)
|
30 |
+
# with row1_col1:
|
31 |
+
# st.image("https://github.com/giswqs/data/raw/main/timelapse/spain.gif")
|
32 |
+
# st.image("https://github.com/giswqs/data/raw/main/timelapse/las_vegas.gif")
|
33 |
|
34 |
+
# with row1_col2:
|
35 |
+
# st.image("https://github.com/giswqs/data/raw/main/timelapse/goes.gif")
|
36 |
+
# st.image("https://github.com/giswqs/data/raw/main/timelapse/fire.gif")
|
pages/.DS_Store
CHANGED
Binary files a/pages/.DS_Store and b/pages/.DS_Store differ
|
|
pages/3_🪟_Split_Map.py
CHANGED
@@ -3,7 +3,7 @@ import leafmap.foliumap as leafmap
|
|
3 |
|
4 |
st.set_page_config(layout="wide")
|
5 |
|
6 |
-
st.title("Split-panel Map")
|
7 |
|
8 |
m = leafmap.Map()
|
9 |
m.split_map(
|
|
|
3 |
|
4 |
st.set_page_config(layout="wide")
|
5 |
|
6 |
+
# st.title("Split-panel Map")
|
7 |
|
8 |
m = leafmap.Map()
|
9 |
m.split_map(
|