OSMNX网络地图中的街道名称

问题描述 投票:1回答:1

我正在使用下面的代码在osmnx上构建街道网络,我看到我可以打印latlon信息,但是,我不知道如何打印。

  • 有没有办法 包括路名 在网络地图中也是如此?我在文档中没有看到如何做到这一点。谢谢

    import osmnx as ox
    G = ox.graph_from_bbox(37.79, 37.78, -122.41, -122.43, network_type='drive')
    G_projected = ox.project_graph(G)
    ox.plot_graph(G_projected)
    

输出。

enter image description here

python gis osmnx
1个回答
1
投票

下面是你如何用OSMnx注释你的地图,以显示街路名称(或任何其他边缘属性的情节)。同样的逻辑也适用于标注节点。

import matplotlib.pyplot as plt
import osmnx as ox
ox.config(use_cache=True, log_console=True)

G = ox.graph_from_address('Piedmont, CA, USA', dist=200, network_type='drive')
G = ox.get_undirected(G)

fig, ax = ox.plot_graph(G, bgcolor='k', edge_linewidth=3, node_size=0,
                        show=False, close=False)
for _, edge in ox.graph_to_gdfs(G, nodes=False).fillna('').iterrows():
    c = edge['geometry'].centroid
    text = edge['name']
    ax.annotate(text, (c.x, c.y), c='w')
plt.show()

enter image description here

唯一的美学挑战是 标签放置问题这也是计算制图中最困难的问题之一。

© www.soinside.com 2019 - 2024. All rights reserved.