#!/usr/bin/env python # coding: utf-8 # > This is one of the 100 recipes of the [IPython Cookbook](http://ipython-books.github.io/), the definitive guide to high-performance scientific computing and data science in Python. # # # 14.7. Creating a route planner for road network # You need NetworkX and Smopy for this recipe. In order for NetworkX to read Shapefile datasets, you might need GDAL/OGR. You can find more information in the previous recipe. # # You also need to download the *Road* dataset on the book's website. (http://ipython-books.github.io) # 1. Let's import the packages. # In[ ]: import networkx as nx import numpy as np import pandas as pd import json import smopy import matplotlib.pyplot as plt get_ipython().run_line_magic('matplotlib', 'inline') # 2. We load the data (a Shapefile dataset) with NetworkX. This dataset contains detailed information about the primary roads in California. NetworkX's `read_shp` function returns a graph, where each node is a geographical position, and each edge contains information about the road linking the two nodes. The data comes from the [United States Census Bureau website](http://www.census.gov/geo/maps-data/data/tiger.html). # In[ ]: g = nx.read_shp("data/tl_2013_06_prisecroads.shp") # 3. This graph is not necessarily connected, but we need a connected graph in order to compute shortest paths. Here, we take the largest connected subgraph using the `connected_component_subgraphs` function. # In[ ]: sgs = list(nx.connected_component_subgraphs( g.to_undirected())) largest = np.argmax([len(sg) for sg in sgs]) sg = sgs[largest] len(sg) # 4. We define two positions (latitude and longitude). We will find the shortest path between these two positions. # In[ ]: pos0 = (36.6026, -121.9026) pos1 = (34.0569, -118.2427) # 5. Each edge in the graph contains information about the road, including a list of points along this road. We first create a function that returns this array of coordinates, for any edge in the graph. # In[ ]: def get_path(n0, n1): """If n0 and n1 are connected nodes in the graph, this function return an array of point coordinates along the road linking these two nodes.""" return np.array(json.loads(sg[n0][n1]['Json'])['coordinates']) # 6. We will notably use the road path to compute its length. We first need to define a function that computes the distance between any two points in geographical coordinates. # In[ ]: # http://stackoverflow.com/questions/8858838/need-help-calculating-geographical-distance EARTH_R = 6372.8 def geocalc(lat0, lon0, lat1, lon1): """Return the distance (in km) between two points in geographical coordinates.""" lat0 = np.radians(lat0) lon0 = np.radians(lon0) lat1 = np.radians(lat1) lon1 = np.radians(lon1) dlon = lon0 - lon1 y = np.sqrt( (np.cos(lat1) * np.sin(dlon)) ** 2 + (np.cos(lat0) * np.sin(lat1) - np.sin(lat0) * np.cos(lat1) * np.cos(dlon)) ** 2) x = np.sin(lat0) * np.sin(lat1) + \ np.cos(lat0) * np.cos(lat1) * np.cos(dlon) c = np.arctan2(y, x) return EARTH_R * c # 7. We can now define a function that returns the length of a path. # In[ ]: def get_path_length(path): return np.sum(geocalc(path[1:,0], path[1:,1], path[:-1,0], path[:-1,1])) # 8. Now, we update our graph by computing the distance between any two connected nodes. We add this information in the `distance` attribute of the edges. # In[ ]: # Compute the length of the road segments. for n0, n1 in sg.edges_iter(): path = get_path(n0, n1) distance = get_path_length(path) sg.edge[n0][n1]['distance'] = distance # 9. The last step before we can find the shortest path in the graph, is to find the two nodes in the graph that are closest to the two requested positions. # In[ ]: nodes = np.array(sg.nodes()) # Get the closest nodes in the graph. pos0_i = np.argmin(np.sum((nodes[:,::-1] - pos0)**2, axis=1)) pos1_i = np.argmin(np.sum((nodes[:,::-1] - pos1)**2, axis=1)) # 10. Now, we use NetworkX's `shortest_path` function to compute the shortest path between our two positions. We specify that the weight of every edge is the length of the road between them. # In[ ]: # Compute the shortest path. path = nx.shortest_path(sg, source=tuple(nodes[pos0_i]), target=tuple(nodes[pos1_i]), weight='distance') len(path) # 11. The itinerary has been computed. The `path` variable contains the list of edges that form the shortest path between our two positions. Now, we can get information about the itinerary with Pandas. The dataset has a few fields of interest, including the name and type (State, Interstate, etc.) of the roads. # In[ ]: roads = pd.DataFrame([sg.edge[path[i]][path[i + 1]] for i in range(len(path) - 1)], columns=['FULLNAME', 'MTFCC', 'RTTYP', 'distance']) roads # Here is the total length of this itinerary. # In[ ]: roads['distance'].sum() # 12. Finally, let display the itinerary on the map. We first retrieve the map with Smopy. # In[ ]: map = smopy.Map(pos0, pos1, z=7, margin=.1) # 13. Our path contains connected nodes in the graph. Every edge between two nodes is characterized by a list of points (constituting a part of the road). Therefore, we need to define a function that concatenates the positions along every edge in the path. A difficulty is that we need to concatenate the positions in the right order along our path. We choose the order based on the fact that the last point in an edge needs to be close to the first point in the next edge. # In[ ]: def get_full_path(path): """Return the positions along a path.""" p_list = [] curp = None for i in range(len(path)-1): p = get_path(path[i], path[i+1]) if curp is None: curp = p if np.sum((p[0]-curp)**2) > np.sum((p[-1]-curp)**2): p = p[::-1,:] p_list.append(p) curp = p[-1] return np.vstack(p_list) # 14. We convert the path in pixels in order to display it on the Smopy map. # In[ ]: linepath = get_full_path(path) x, y = map.to_pixels(linepath[:,1], linepath[:,0]) # 15. Finally, we display the map, with our two positions and the computed itinerary between them. # In[ ]: plt.figure(figsize=(6,6)); map.show_mpl(); # Plot the itinerary. plt.plot(x, y, '-k', lw=1.5); # Mark our two positions. plt.plot(x[0], y[0], 'ob', ms=10); plt.plot(x[-1], y[-1], 'or', ms=10); # > You'll find all the explanations, figures, references, and much more in the book (to be released later this summer). # # > [IPython Cookbook](http://ipython-books.github.io/), by [Cyrille Rossant](http://cyrille.rossant.net), Packt Publishing, 2014 (500 pages).