我正在使用 OSMNx 绘制最短路径路线,但我无法找到在同一张地图上绘制多条路线的方法。到目前为止,这是我的代码,
route_list = []
for i in range(len(pick_drop_outliers_ratio)):
coords = pick_drop_outliers_ratio["Pickup_Points"][i]
count = pick_drop_outliers_ratio["Count"][i]
print("i: ", i, " count: ", count)
if(count>9):
coords = literal_eval(coords)
pickup_lat = (coords[0][0])
pickup_lon = (coords[0][1])
dropoff_lat = (coords[1][0])
dropoff_lon = (coords[1][1])
orig_node = ox.get_nearest_node(G, (pickup_lat, pickup_lon))
dest_node = ox.get_nearest_node(G, (dropoff_lat, dropoff_lon))
route = nx.shortest_path(G, orig_node, dest_node, weight='length')
route_list.append(route)
fig, ax = ox.plot_graph_route(G, route_list, node_size=0)
我希望在同一地图上为每条路线绘制不同颜色的 route_list 中的每条路线。由于 OSMNx 中没有内置函数,有没有办法做到这一点?
我发现解决方案是“绘制图表,然后使用 matplotlib 在顶部手动添加路线”。但无法实施。