Skip to content
Snippets Groups Projects
Commit bf9403da authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Add some extra information.

parent d25017b3
No related branches found
No related tags found
1 merge request!18Several changes including chunking and expansion of examples.
Pipeline #19108 passed
...@@ -14,14 +14,19 @@ data = create_data() ...@@ -14,14 +14,19 @@ data = create_data()
def setup_main_frame(): def setup_main_frame():
st.title("Welcome to the :green[enstools-compression] playground!") st.title("Welcome to the :green[enstools-compression] playground!")
st.markdown("Find more information our [**GitHub repository**](https://github.com/wavestoweather/enstools-compression)"
" or in our [**documentation**](https://enstools-compression.readthedocs.io)")
with st.sidebar: with st.sidebar:
select_dataset(data) select_dataset(data)
slice_selection = select_slice(data) slice_selection = select_slice(data)
st.markdown("---") st.markdown("---")
if data.reference_da is None:
st.markdown("## :point_left: Please :red[select a dataset] using the left sidebar!")
return
options = ["Compression", "Advanced Compression", "Analysis"] options = ["Compression", "Advanced Compression", "Analysis"]
basic, advanced, analysis = st.tabs(options) basic, advanced, analysis = st.tabs(options)
with basic: with basic:
basic_section(data=data, slice_selection=slice_selection) basic_section(data=data, slice_selection=slice_selection)
with st.spinner(): with st.spinner():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment