Skip to main content

GTFS Database

Project description

Join the chat at https://gitter.im/OpenTransitTools/gtfsdb

Supported Databases

  • PostgreSQL (PostGIS for Geo tables) - preferred

  • Oracle - tested

  • MySQL - tested

  • SQLite - tested

GTFS (General Transit Feed Specification) Database

Python code that will load GTFS data into a relational database, and SQLAlchemy ORM bindings to the GTFS tables in the gtfsdb. The gtfsdb project’s focus is on making GTFS data available in a programmatic context for software developers. The need for the gtfsdb project comes from the fact that a lot of developers start out a GTFS-related effort by first building some amount of code to read GTFS data (whether that’s an in-memory loader, a database loader, etc…); GTFSDB can hopefully reduce the need for such drudgery, and give developers a starting point beyond the first step of dealing with GTFS in .csv file format.

Available on pypi: https://pypi.python.org/pypi/gtfsdb

Install from source via github (if you want the latest code) :

  1. Install Python 3.x https://www.python.org/downloads/ (code also runs on 2.7 if you are stuck on that version)

  2. pip install zc.buildout - https://pypi.org/project/zc.buildout

  3. (optinal step for postgres users: ‘pip install psycopg2-binary’)

  4. git clone https://github.com/OpenTransitTools/gtfsdb.git

  5. cd gtfsdb

  6. buildout install prod – NOTE: if you’re using postgres, do a ‘buildout install prod postgresql’

  7. bin/gtfsdb-load –database_url <db url> <gtfs file | url>

  8. examples:

    • bin/gtfsdb-load –database_url sqlite:///gtfs.db gtfsdb/tests/large-sample-feed.zip

    • bin/gtfsdb-load –database_url sqlite:///gtfs.db http://developer.trimet.org/schedule/gtfs.zip

    • bin/gtfsdb-load –database_url postgresql://postgres@localhost:5432 –is_geospatial http://developer.trimet.org/schedule/gtfs.zip

  9. view db ( example: https://sqliteonline.com )

The best way to get gtfsbd up and running is via the ‘zc.buildout’ tool. Highly recommended to first install buildout (e.g., pip install zc.buildout) before doing much of anything else.

Postgres users, gtfsdb requires the psycopg2-binary database driver. Installing that via pip install psychopg2-binary will relieve gtfsdb from re-installing locally as part of the build. And if after the fact, you see exceptions mentioning

Usage with Docker:

  1. Build the image with docker build -t gtfsdb .

  2. Run it with:

docker run gtfsdb --database_url <db url>  <gtfs file | url>

Example Queries:

  • get first stop time of each trip for route_id 1

    select *
    from trips t, stop_times st
    where t.route_id = '1'
    and t.trip_id = st.trip_id
    and st.stop_sequence = 1
  • get agency name and number of routes

    select a.agency_name, a.agency_id, count(r.route_id)
    from routes r, agency a
    where r.agency_id = a.agency_id
    group by a.agency_id, a.agency_name
    order by 3 desc

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

gtfsdb-0.6.0.tar.gz (43.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gtfsdb-0.6.0-py3-none-any.whl (57.4 kB view details)

Uploaded Python 3

File details

Details for the file gtfsdb-0.6.0.tar.gz.

File metadata

  • Download URL: gtfsdb-0.6.0.tar.gz
  • Upload date:
  • Size: 43.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.1

File hashes

Hashes for gtfsdb-0.6.0.tar.gz
Algorithm Hash digest
SHA256 a83045d940d28623b0a54898ae05193c6d36a0837ba78bbadc92d3fb6b33336c
MD5 3b1fbe0df9072706e37756e855393ddd
BLAKE2b-256 e192abb7884a9a66b9d6f6cc3079f419fb05081493f67b4514f9f717f5c9a566

See more details on using hashes here.

File details

Details for the file gtfsdb-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: gtfsdb-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 57.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.1

File hashes

Hashes for gtfsdb-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9bec3c1a848fd7445432fb8db67e1b6ccc0270ee4cf916b03b736f4725cca064
MD5 c7e5ef6fa4450a0dd2eeb17cb1af8565
BLAKE2b-256 78871b69cee2d45d7a3031e5f1f9d82747eb90211a8cb02a4c79a882c5c28c0f

See more details on using hashes here.

Supported by

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