Spaces:
Sleeping
Sleeping
Commit
·
4a4b65e
1
Parent(s):
9f5a064
Remove index from CSV
Browse files
app.py
CHANGED
@@ -23,6 +23,6 @@ if uploaded_file is not None:
|
|
23 |
|
24 |
with st.spinner('Fetching land coverage data...'):
|
25 |
add_classifications(df, lat_col=lat_col, lon_col=lon_col)
|
26 |
-
st.download_button('Download CSV', df.to_csv(), file_name="LatLonCover.csv")
|
27 |
|
28 |
|
|
|
23 |
|
24 |
with st.spinner('Fetching land coverage data...'):
|
25 |
add_classifications(df, lat_col=lat_col, lon_col=lon_col)
|
26 |
+
st.download_button('Download CSV', df.to_csv(index=False), file_name="LatLonCover.csv")
|
27 |
|
28 |
|