mattritchey commited on
Commit
4f05842
·
1 Parent(s): 5b14e3d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -156,8 +156,10 @@ m = map_perimeters(gdf_cut, address)
156
  indicents = list(gdf_cut['Incident'].values)
157
  incident_edge = st.sidebar.selectbox(
158
  'Find Distance to Closest Edge:', indicents)
159
- st.head(incident_edge)
 
160
  st.header(gdf_cut.query(f"Incident=='{incident_edge}'"))
 
161
  vertices = extract_vertices(gdf_cut.query(f"Incident=='{incident_edge}'"))
162
  vertices["Lat_address"] = lat
163
  vertices["Lon_address"] = lon
 
156
  indicents = list(gdf_cut['Incident'].values)
157
  incident_edge = st.sidebar.selectbox(
158
  'Find Distance to Closest Edge:', indicents)
159
+
160
+ st.header(incident_edge)
161
  st.header(gdf_cut.query(f"Incident=='{incident_edge}'"))
162
+
163
  vertices = extract_vertices(gdf_cut.query(f"Incident=='{incident_edge}'"))
164
  vertices["Lat_address"] = lat
165
  vertices["Lon_address"] = lon