dhs-st commited on
Commit
28b341e
·
verified ·
1 Parent(s): 3aae782

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -116,7 +116,7 @@ def download_road_shapefile(coordinates_upper_left, coordinates_bottom_right):
116
 
117
  gdf_edges = gdf_edges[gdf_edges['name'].notnull()]
118
  # Apply the processing to create a combined name field
119
- gdf_edges['highway'] = gdf_edges.apply(process_road_name, axis = 1)
120
 
121
  # Clean and abbreviate the display names
122
  gdf_edges['display_name'] = gdf_edges['display_name'].apply(abbreviate_address)
 
116
 
117
  gdf_edges = gdf_edges[gdf_edges['name'].notnull()]
118
  # Apply the processing to create a combined name field
119
+ gdf_edges['highway'] = gdf_edges.apply(process_highway_name, axis = 1)
120
 
121
  # Clean and abbreviate the display names
122
  gdf_edges['display_name'] = gdf_edges['display_name'].apply(abbreviate_address)