【发布时间】:2019-10-27 16:43:07
【问题描述】:
import osmnx as ox
%matplotlib inline
G = ox.graph_from_place('Seoul, South Korea', network_type='drive')
fig, ax = ox.plot_graph(ox.project_graph(G))
在这部分,如何找到城市和国家的确切名称?它不适用于韩国首尔。
我尝试了几次,但都失败了。
import osmnx as ox
%matplotlib inline
G = ox.graph_from_place('Seoul, South Korea', network_type='drive')
fig, ax = ox.plot_graph(ox.project_graph(G))
【问题讨论】:
标签: python python-3.x geospatial osmnx