gpt4 book ai didi

python - osmnx:如何过滤高速公路类型?

转载 作者:行者123 更新时间:2023-12-01 00:28:09 37 4
gpt4 key购买 nike

我尝试使用custom_filter,它对一些小型道路网有效,但对于像整个悉尼网络这样的大型道路网,它不起作用。在输出文件中,还有一些我不想要的其他高速公路类型。

custom_filter='["highway"~"motorway|motorway_link|trunk|trunk_link|primary|primary_link|secondary|secondary_link|tertiary|tertiary_link|road|road_link|service|service_link\
unclassified|unclassified_link"]'
G=ox.core.graph_from_place('Sydney,Australia',network_type='drive', \
simplify=True, infrastructure='way["highway"]', custom_filter=custom_filter)

最佳答案

这是一个仅获取高速公路及其链接的简单示例(请注意network_type=None):

import osmnx as ox
ox.config(use_cache=True, log_console=True)
cf = '["highway"~"motorway|motorway_link"]'
G = ox.graph_from_place('Sydney, Australia', simplify=True, custom_filter=cf)
print(ox.graph_to_gdfs(G, nodes=False)['highway'].value_counts())

关于python - osmnx:如何过滤高速公路类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58386781/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com