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))
In this part, how to find the exact title of city and country? It does not work for Seoul, South Korea.
I have tried a few times but it was failed.
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))