Cities

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

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

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);

mke_map.png

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);

Untitled

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

Biking time to any pharmacy in the neighborhood of Saint-Laurent, Montreal

the cora network

the cora network