Plsek commited on
Commit
8a6c339
·
1 Parent(s): 05f58f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -80,7 +80,7 @@ if uploaded_file is not None:
80
  # Add a slider to change the scale
81
  with col1:
82
  st.markdown(
83
- """<style>[data-baseweb="select"] {margin-top: -50px;}</style>""",
84
  unsafe_allow_html=True
85
  )
86
 
@@ -110,12 +110,12 @@ if uploaded_file is not None:
110
 
111
  plot_prediction(y_pred)
112
 
113
- # with col2:
114
- # download = st.button('Download FITS File')
115
-
116
- # if download:
117
- # ccd = CCDData(pred, unit="adu", wcs=wcs)
118
- # ccd.write(f"predicted.fits", overwrite=True)
119
- # with open('predicted.fits', 'rb') as f:
120
- # data = f.read()
121
- # st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")
 
80
  # Add a slider to change the scale
81
  with col1:
82
  st.markdown(
83
+ """<style>[data-baseweb="select"] {margin-top: -52px;}</style>""",
84
  unsafe_allow_html=True
85
  )
86
 
 
110
 
111
  plot_prediction(y_pred)
112
 
113
+ with col2:
114
+ download = st.button('Download')
115
+
116
+ if download:
117
+ ccd = CCDData(pred, unit="adu", wcs=wcs)
118
+ ccd.write("predicted.fits", overwrite=True)
119
+ with open('predicted.fits', 'rb') as f:
120
+ data = f.read()
121
+ st.download_button(label="Download", data=data, file_name="predicted.fits", mime="application/octet-stream")