Created
March 29, 2021 17:30
-
-
Save afcotroneo/1feb267c10179d82a30735e118ef73d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load Edges into GeoDataFrame | |
nodes, edges = ox.graph_to_gdfs(G) | |
# Drop Unwanted Columns | |
edges.drop(['oneway', 'lanes', 'maxspeed'], inplace=True, axis=1) | |
# Preview Data | |
edges |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment