mattritchey commited on
Commit
aa31ea5
·
1 Parent(s): 136f3c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -186,5 +186,7 @@ with col1:
186
  st_folium(m, height=600)
187
  with col2:
188
  st.header('Fires')
189
- gdf_cut[['Incident', 'DiscoveryDate', 'Size_acres','Miles to Fire Centroid']].drop_duplicates()
 
 
190
 
 
186
  st_folium(m, height=600)
187
  with col2:
188
  st.header('Fires')
189
+ gdf_cut2 = gdf_cut[['Incident', 'DiscoveryDate', 'Size_acres','Miles to Fire Centroid']].drop_duplicates()
190
+ gdf_cut2.index = gdf_cut2.index+1
191
+ gdf_cut2
192