messis-demo / app.py
yvokeller's picture
add Poster references
249c808
raw
history blame
893 Bytes
import streamlit as st
def main():
st.set_page_config(layout="wide", page_title="Messis 🌾 - Crop Classification 🌎")
st.title("Messis 🌾 - Crop Classification 🌎")
st.write("Welcome to the Messis Crop Classification demo. Use the sidebar to navigate between selecting the location you are interested in and performing crop classification.")
st.page_link("app.py", label="Home", icon="🏠")
st.page_link("pages/1_Select_Location.py", label="Select Location", icon="πŸ“")
st.page_link("pages/2_Perform_Crop_Classification.py", label="Perform Crop Classification", icon="πŸ”")
st.markdown("""
---
### Ausstellung Bachelor-Diplomarbeiten
""")
st.page_link("https://docs.google.com/document/d/1pd_rAwvHLSp1ba_JUFa6wfdbPoU93l41u1OZl_40Noo/edit?usp=sharing", label="Referenzen Poster", icon="πŸ“„")
if __name__ == "__main__":
main()