mattritchey commited on
Commit
cfb1aab
·
1 Parent(s): 7863e17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -143,7 +143,7 @@ gdf_cut["Lon_address"] = lon
143
  gdf_cut['Miles to Fire Centroid'] = [
144
  distance(i) for i in gdf_cut[gdf_cut.columns[-4:]].values]
145
  gdf_cut['Miles to Fire Centroid'] = gdf_cut['Miles to Fire Centroid'].round(2)
146
- gdf_cut['Size_acres'] = gdf_cut[Size_acres'].astype(float).round(1)
147
  if miles_range is not None:
148
  gdf_cut = gdf_cut.query(f"`Miles to Fire Centroid`<={miles_range}")
149
 
 
143
  gdf_cut['Miles to Fire Centroid'] = [
144
  distance(i) for i in gdf_cut[gdf_cut.columns[-4:]].values]
145
  gdf_cut['Miles to Fire Centroid'] = gdf_cut['Miles to Fire Centroid'].round(2)
146
+ gdf_cut['Size_acres']=gdf_cut['Size_acres'].round(1)
147
  if miles_range is not None:
148
  gdf_cut = gdf_cut.query(f"`Miles to Fire Centroid`<={miles_range}")
149