我知道可以通过OSMNX python软件包提取城市的道路网。在https://geoffboeing.com/2016/11/osmnx-python-street-networks/上查看详细信息。

paris_network = ox.gdf_from_place("Paris")


但是,比方说,我不希望这么高的细节水平,而是整个国家的大型高速公路。我正在寻找类似的东西:

france_big_expressway_network = ox.gdf_from_place("France", road_type = "freeway")


我想这可能来自“基础设施”论点,但是作为一个新手,我真的不知道如何精确地使用它。

最佳答案

是的,您可以使用OSMnx执行此操作:

import osmnx as ox
ox.config(use_cache=True, log_console=True)
G = ox.graph_from_place('France', network_type='none', infrastructure='way["highway"~"motorway"]')
fig, ax = ox.plot_graph(G)

关于python - python osmnx-仅提取一个国家的大型高速公路,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52231122/

10-12 23:39