Spaces:
Sleeping
Sleeping
Commit
·
02f0311
1
Parent(s):
71be939
Update app.py
Browse files
app.py
CHANGED
|
@@ -151,7 +151,12 @@ with col1:
|
|
| 151 |
st.header('Estimated Maximum Hail Size')
|
| 152 |
st.write('Data from 2010 to 2023-09-24')
|
| 153 |
df_hail_cut_group2
|
| 154 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 155 |
st.download_button(
|
| 156 |
label="Download data as CSV",
|
| 157 |
data=csv2,
|
|
|
|
| 151 |
st.header('Estimated Maximum Hail Size')
|
| 152 |
st.write('Data from 2010 to 2023-09-24')
|
| 153 |
df_hail_cut_group2
|
| 154 |
+
|
| 155 |
+
data=df_hail_cut_group2.reset_index()
|
| 156 |
+
data['Address']=''
|
| 157 |
+
data.loc[0,'Address']=address
|
| 158 |
+
csv2 = convert_df(data)
|
| 159 |
+
|
| 160 |
st.download_button(
|
| 161 |
label="Download data as CSV",
|
| 162 |
data=csv2,
|