mattritchey commited on
Commit
3075b14
·
1 Parent(s): 4f05842

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -157,8 +157,9 @@ 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
 
157
  incident_edge = st.sidebar.selectbox(
158
  'Find Distance to Closest Edge:', indicents)
159
 
160
+ st.header(indicents)
161
+ gdf_cut.query(f"Incident=='{incident_edge}'")
162
+ gdf_cut[gdf_cut['Incident']==incident_edge]
163
 
164
  vertices = extract_vertices(gdf_cut.query(f"Incident=='{incident_edge}'"))
165
  vertices["Lat_address"] = lat