如何从omsnx图中选择子图?

时间:2019-06-21 08:15:02

标签: python networkx osmnx

我已使用osmnx

从海地提取了道路网络
impor omsmnx as ox
place = ox.gdf_from_place('Haiti', which_result=2)
coords = place.geometry.total_bounds
G = ox.graph_from_bbox(coords[3], coords[1], coords[2], coords[0])

这就是结果

enter image description here

现在,我只想获得一个城市的道路网,比方说Port-au-Prince

city = 'Port-au-Prince'
place = ox.gdf_from_place(city, which_result=2)
coords_city = place.geometry.total_bounds

是否可以在G内选择coords_city的子图?

0 个答案:

没有答案