Update app.py
Browse files
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(
|
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)
|