peartree is a library for converting GTFS to directed graphs.
Project description
peartree is a library for converting GTFS feed schedules into a representative directed network graph. The tool uses Partridge to convert the target operator schedule data into Pandas dataframes and then NetworkX to hold the manipulated schedule data as a directed multigraph.
Above, an example of multiple Bay Area transit operators being incrementally loaded into peartree.
Installation
pip install peartree
Usage
See a full notebook at this gist to see a simple, step-by-step iPython Notebook pulling in an AC Transit GTFS feed and converting it to a NetworkX graph.
import peartree as pt
path = 'path/to/actransit_gtfs.zip'
# Automatically identify the busiest day and
# read that in as a Partidge feed
feed = pt.get_representative_feed(path)
# Set a target time period to
# use to summarize impedance
start = 7*60*60 # 7:00 AM
end = 10*60*60 # 10:00 AM
# Converts feed subset into a directed
# network multigraph
G = pt.load_feed_as_graph(feed, start, end)
Examples
I’ve yet to produce a full how-to guide for this library, but will begin to populate this section with any blog posts or notebooks that I or others produce, that include workflows using peartree.
Calculating betweeness centrality with Brooklyn bus network
Combining a peartree transit network and an OpenStreetMap walk network
Generating comparative acyclic route graphs
Coalescing transit network graphs and spectral clustering methods
Exploratory graph analysis with betweenness and load centrality
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file peartree-0.6.4-py2.py3-none-any.whl
.
File metadata
- Download URL: peartree-0.6.4-py2.py3-none-any.whl
- Upload date:
- Size: 42.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 879a6ff478dfa1e6d6b2dab6e9c52357a6e396ebbab7baaa729184ba64abbd2d |
|
MD5 | d6d3e5c3bee7056d91ebef2f6bf550c7 |
|
BLAKE2b-256 | df9123770fc8b365297e3d2dee3baac5d29946e8c9aad2dfdb15953432bf557d |