Update app.py
Browse files
app.py
CHANGED
@@ -149,15 +149,18 @@ with col:
|
|
149 |
st.markdown("Input images should be centred at the centre of the galaxy and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
150 |
st.markdown("If you use this tool for your research, please cite [Plšek et al. 2023](https://arxiv.org/abs/2304.05457)")
|
151 |
|
152 |
-
_, col_1,
|
153 |
|
154 |
with col_1:
|
155 |
# Create file uploader widget
|
156 |
uploaded_file = st.file_uploader("Choose a FITS file", type=['fits'])
|
157 |
|
158 |
with col_2:
|
159 |
-
st.markdown("
|
160 |
NGC4649 = st.button("NGC4649")
|
|
|
|
|
|
|
161 |
NGC5813 = st.button("NGC5813")
|
162 |
|
163 |
if NGC4649: uploaded_file = "NGC4649_example.fits"
|
|
|
149 |
st.markdown("Input images should be centred at the centre of the galaxy and point sources should be filled with surrounding background ([dmfilth](https://cxc.cfa.harvard.edu/ciao/ahelp/dmfilth.html)).")
|
150 |
st.markdown("If you use this tool for your research, please cite [Plšek et al. 2023](https://arxiv.org/abs/2304.05457)")
|
151 |
|
152 |
+
_, col_1, col_2, col_3, _ = st.columns([bordersize, 2.0, 0.5, 0.5, bordersize])
|
153 |
|
154 |
with col_1:
|
155 |
# Create file uploader widget
|
156 |
uploaded_file = st.file_uploader("Choose a FITS file", type=['fits'])
|
157 |
|
158 |
with col_2:
|
159 |
+
st.markdown("## Examples")
|
160 |
NGC4649 = st.button("NGC4649")
|
161 |
+
|
162 |
+
with col_3:
|
163 |
+
st.markdown("## ")
|
164 |
NGC5813 = st.button("NGC5813")
|
165 |
|
166 |
if NGC4649: uploaded_file = "NGC4649_example.fits"
|