通过查看 OSMnx和OSM API文档,我无法找到有关如何指定世界地名的参考。
OSMnx 示例使用美国位置,其中使用了城市、县、州、国家结构,但这种结构当然不适用于其他国家/地区。
具体来说,我应该如何构造这个查询来指定伦敦的边界?或者有没有我还没有找到的文档?
G = ox.graph_from_place('London', network_type='drive')
# project the network to UTM (zone calculated automatically) then plot it
G_projected = ox.project_graph(G)
fig, ax = ox.plot_graph(G_projected)
谢谢!