OSMnx Get Lat Lon Coordinates of Clean Intersection Nodes
问题 I am using OSMnx to get clean intersections from OpenStreetMaps road network. The intersection nodes are currently in (x,y) coordinates, but I want to plot them using lat lon coordinates. From the example Jupiter notebook, OSMnx Example #14 Clean Intersection Cluster Nodes, I am able to get the street network and call ox.clean_intersections to produce the clean intersections. import osmnx as ox, matplotlib.pyplot as plt, numpy as np ox.config(use_cache=True, log_console=True) %matplotlib