import osmnx as ox
import networkx as nx
G = ox.graph_from_place("Paris, France", network_type="drive")
ox.plot_graph(G, node_color="r");
a view of the Paris’ road network
import osmnx as ox
import networkx as nx
G = ox.graph_from_place("Barcelona", network_type="drive")
ox.plot_graph(G, node_color="r", edge_color='b');
a view of Barcelona’s road network
import osmnx as ox
import networkx as nx
G = ox.graph_from_place("Milwaukee, United States", network_type="drive")
ox.plot_graph(G, node_color="r", edge_color='b', node_size=0.5);
import osmnx as ox
import networkx as nx
G = ox.graph_from_place("Montreal, Canada", network_type="drive")
ox.plot_graph(G, node_color="r", edge_color='b', node_size=0.7);
plot_neighborhood_graph(transportation_type='biking',
neighbourhood='Saint-Laurent',
distances_by_transportation=biking_distances,
amenity='pharmacy')
Biking time to any pharmacy in the neighborhood of Saint-Laurent, Montreal
the cora network