mattritchey commited on
Commit
68445d0
·
1 Parent(s): aa31ea5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -151,7 +151,7 @@ if size == 'Yes':
151
  gdf_cut = gdf_cut.query("Size_acres>100")
152
 
153
  gdf_cut = gdf_cut.sort_values('Miles to Fire Centroid').drop_duplicates().reset_index(drop=1)
154
- gdf_cut.index = gdf_cut.index+1
155
 
156
  #Map Data
157
  m = map_perimeters(gdf_cut, address)
@@ -186,7 +186,7 @@ with col1:
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
 
 
151
  gdf_cut = gdf_cut.query("Size_acres>100")
152
 
153
  gdf_cut = gdf_cut.sort_values('Miles to Fire Centroid').drop_duplicates().reset_index(drop=1)
154
+ # gdf_cut.index = gdf_cut.index+1
155
 
156
  #Map Data
157
  m = map_perimeters(gdf_cut, address)
 
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().reset_index(drop=1)
190
  gdf_cut2.index = gdf_cut2.index+1
191
  gdf_cut2
192