Spaces:
Sleeping
Sleeping
netcdf
Browse files- app.py +1 -1
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -56,7 +56,7 @@ Start by uploading your HDF5 file in the 'UPLOAD' section and tailor the analysi
|
|
| 56 |
''')
|
| 57 |
|
| 58 |
# Section 1: Upload
|
| 59 |
-
uploaded_file = st.file_uploader("Choose a .h5 file", type=
|
| 60 |
|
| 61 |
# Section 2: Analysis Params
|
| 62 |
with st.expander("Request Analysis Parameters"):
|
|
|
|
| 56 |
''')
|
| 57 |
|
| 58 |
# Section 1: Upload
|
| 59 |
+
uploaded_file = st.file_uploader("Choose a .h5 or .nc file", type=['h5', 'nc'])
|
| 60 |
|
| 61 |
# Section 2: Analysis Params
|
| 62 |
with st.expander("Request Analysis Parameters"):
|
requirements.txt
CHANGED
|
@@ -3,5 +3,6 @@ streamlit
|
|
| 3 |
igraph
|
| 4 |
ipykernel
|
| 5 |
ipywidgets
|
|
|
|
| 6 |
|
| 7 |
git+https://github.com/jonm3D/h5xray.git@streamlit_example#egg=h5xray
|
|
|
|
| 3 |
igraph
|
| 4 |
ipykernel
|
| 5 |
ipywidgets
|
| 6 |
+
netcdf4
|
| 7 |
|
| 8 |
git+https://github.com/jonm3D/h5xray.git@streamlit_example#egg=h5xray
|