Skip to main content

General Transit Feed Specification (GTFS) as a Django app

Project description

multigtfs: GTFS as a Django app

multigtfs is an Apache 2.0-licensed Django app that supports importing and exporting of GTFS feeds. All features of the June 20, 2012 reference are supported. It allows multiple feeds to be stored in the database at once.

It requires a spatial databases compatible with GeoDjango. PostgreSQL 9.x and PostGIS 2.x are recommended for development and production, since these support all the GeoDjango features. There are issues with GeoDjango in Django 1.4 (see issue 20036), so Django 1.5 or above is recommended.

Usage

Installation

  1. pip install multigtfs

  2. In your settings, add multigtfs to your INSTALLED APPS and ensure you have a spatial database configured.

  3. ./manage.py syncdb to install the tables, or ./manage.py migrate if you are using South

Management Commands

There are two management commands to get GTFS feeds in and out of the database:

./manage.py importgtfs [--name name_of_feed] path/to/gtfsfeed.zip
./manage.py exportgtfs [--name basename_of_file] <feed_id>

In Code

multigtfs is composed of Django models that implement GTFS, plus helper methods for importing and exporting to the GTFS format. Where GTFS relates objects through IDs (such as Stop IDs for stops), multigtfs uses ForeignKeys.

multigtfs includes a Feed object, which is not part of GTFS. This is used to include several feeds in the same file without collisions. These can be feeds from different agencies, or different versions of a feed from the same agency. The object has a helper method, in_feed, that is sometimes useful in filtering objects by feed. At other times, it is easier to start at the feed and follow relations.

There isn’t separate documentation yet. Load the app in your Django project, play with the admin, and read the source code to learn more.

Sample Project

The examples/explore sample project demonstrates a simple read-only website for viewing one or more GTFS feeds. It include OpenLayers maps for viewing the routes, trips, and shapes. You an use it as is, or as a starting place for your own projects. See the project README for more information.

Project History

multigtfs was first developed for the Tulsa Web Devs’ project to get Tulsa’s buses into Google Maps. tulsa-transit-google is the Tulsa-specific portion, and multigtfs contains the parts useful for any GTFS effort. Tulsa’s bus schedule appeared on Google Maps in July 2013, after a two-year effort. The Tulsa Web Devs founded Code for Tulsa to collaborate on future civic tech projects.

The conversion to GeoDjango in February 2014 was generously sponsored by MRCagney.

Future

Upcoming features include:

  • Validating the feed against Google’s requirements

  • More documentation

  • More flexible GTFS imports and exports (longer values, extra columns)

See the issues list for more details.

Changelog

0.3.1 (2014-03-12)

This release was generously sponsored by MRCagney.

  • Add example project ‘explore’, which represents a feed as linked pages with OpenLayer maps.

  • Add cached geometry for Routes, Trips, and Shapes.

  • Extend fields for real-world data (FeedInfo.version, Route.short_name).

  • Drop support for Points as geography fields.

0.3.0 (2014-02-01)

This release was generously sponsored by MRCagney.

  • Convert to GeoDjango: Stops and ShapePoints use Points rather than lat/long, admin shows map of points, and new configuration settings to customize.

  • Import south in try/except blocks (so that South really is optional).

  • Django 1.5 or above is now required.

0.2.6 (2013-06-07)

  • Remove verify_exists from URLField, so it can be used in Django 1.5

0.2.5 (2013-02-13)

  • Human-friendly sorting for rest of GTFS output

0.2.4 (2013-02-06)

  • Added optional manual sorting of output, used on stop_times.txt

0.2.3 (2012-11-09)

  • Added South migrations for applying 0.2.2 changes

0.2.2 (2012-11-09)

  • Fixed Fare.transfers for unlimited rides (use None instead of -1)

  • First PyPi version

Authors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multigtfs-0.3.1.tar.gz (2.1 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page