问题描述
我正在使用 osmnx 检索“驱动器”网络。当我检查边缘地理数据框时,我注意到一些 osmid 是列表。某些 id 是列表是否有原因/模式?
我想知道,因为我正试图将它与 uber movement speeds data 合并。它们通过“osm_way_id”、“osm_start_node_id”和“osm_end_node_id”提供街道上的每小时速度。他们所有的 id 都是整数。来自 uber 的“osm_way_id”和来自 osmnx 的“osmid”之间存在不匹配,我正试图决定如何克服。
感谢任何想法/信息,提前致谢!
import osmnx as ox
ox.config(log_console=True,use_cache=True)
north = 38.289
south = 36.898
east = -121.214
west = -122.704
G = ox.graph.graph_from_bBox(north,south,east,west,network_type='drive',clean_periphery=True)
gdf_nodes,gdf_edges = ox.graph_to_gdfs(G,edges = True,nodes = True)
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)