Skip to content

Latest commit

 

History

History
79 lines (60 loc) · 2.94 KB

README.rst

File metadata and controls

79 lines (60 loc) · 2.94 KB

Pandana

Build Status Coverage Status

In this case, a picture is worth a thousand words. The image below shows the distance to the 2nd nearest restaurant (rendered by matplotlib) for the city of San Francisco. With only a few lines of code, you can grab a network from OpenStreetMap, take the restaurants that users of OpenStreetMap have recorded, and in about half a second of compute time you can get back a Pandas Series of node_ids and computed values of various measures of access to destinations on the street network.

Distance to Restaurants

Distance to Restaurants

Beyond simple access to destination queries, this library also implements more general aggregations along the street network (or any network). For a given region, this produces hundreds of thousands of overlapping buffer queries (still performed in less than a second) that can be used to characterize the local neighborhood around each street intersection. The result can then be mapped, or assigned to parcel and building records, or used in statistical models as we commonly do with UrbanSim. This is in stark contrast to the arbitrary non-overlapping geographies ubiquitous in GIS. Although there are advantages to the GIS approach, we think network queries are a more accurate representation of how people interact with their environment.

We look forward to creative uses of a general library like this - please let us know if you think you have a great use case by tweeting us at @urbansim or post on the UrbanSim forum.

Docs

Documentation for Pandana is now available.

Thorough API documentation for Pandana is also available.

Acknowledgments

None of this would be possible without the help of Dennis Luxen and his OSRM (https://github.com/DennisOSRM/Project-OSRM). Thank you Dennis!

Nearest neighbor queries are performed with the fastest k-d tree around, i.e. ANN (http://www.cs.umd.edu/~mount/ANN/).

Academic Literature

A complete description of the methodology was presented at the Transportation Research Board Annual Conference in 2012. Please cite this paper when referring to the methodology implemented by this library.

Related UDST libraries