-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROOFS_OF_CONCEPT.py
28 lines (22 loc) · 1.3 KB
/
PROOFS_OF_CONCEPT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import streamlit as st
# MAIN
def main():
st.set_page_config(
page_title='Interactive Tools for Sustainable Cities' ,
page_icon="🌿",
layout="wide",
initial_sidebar_state="expanded")
st.title("Interactive Tools for Sustainable Cities")
st.markdown("We set out to investigate how digital tools could help improve \
(cooperative) decision-making in urban environments by offering accessible \
information and inspiration. \
This collection of proofs-of-concept explores different approaches: data visualization, \
gamification, chatbots, augmented reality etc. All interactive and sometimes even fun!\
Choose on the sidebar which one you want to try.")
st.markdown(" 🚣**Work in progress**🚣 by students of the Applied IT Master, [Fontys ICT](https://www.fontysictinnovationlab.nl/) .\
All data and code is [available](https://github.com/EhvDS/GreenCity_app) but not yet properly reviewed. \
So :red[please don't base any serious conclusions on these proof-of-concepts yet].")
st.markdown("Send your questions and comments to Simona Orzan ([[email protected]](mailto:[email protected])).")
st.markdown("Enjoy!")
if __name__ == '__main__':
main()