-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplications.py
More file actions
18 lines (16 loc) 路 937 Bytes
/
Copy pathApplications.py
File metadata and controls
18 lines (16 loc) 路 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import cloud_init
import streamlit as st
st.set_page_config(page_title="Meso-NH Tools", layout="wide")
pg = st.navigation([
st.Page("Home.py", title="Home", icon="馃彔", default=True),
st.Page("pages/Namelist_Editor.py", title="Namelist Editor", icon="馃摑"),
st.Page("pages/Workspace.py", title="Workspace", icon="馃搨"),
st.Page("pages/Compare_Namelist.py", title="Compare Namelists", icon="鈿栵笍"),
st.Page("pages/Catalogue_Explorer.py", title="Catalogue Explorer", icon="馃摎"),
st.Page("pages/Vertical_Levels.py", title="Vertical Levels", icon="馃搱"),
st.Page("pages/Horizontal_Grids.py", title="Horizontal Grids", icon="馃寪"),
st.Page("pages/Initial_radiosoundings_forcing.py", title="Initial Profile and Forcing", icon="馃巿"),
st.Page("pages/Quick_Plots.py", title="Quick Plots", icon="馃搳"),
st.Page("pages/ChatBot.py", title="Chat Bot", icon="馃"),
])
pg.run()