You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 16, 2020. It is now read-only.
HRT will begin supporting real time data and has stopped sharing their hack-y real-time feed. This project is no longer useful.
hrt-bus-api
HRT Bus API publishes real time bus data from Hampton Roads Transit through an application programming interface for developers to make apps from it.
HRT Bus API consists of Python scripts and a Flask app that transform, store, and expose HRT Bus data through a RESTful API. API's don't make for good demos, so we've created an HRT Bus Finder App.
HRT exposes the real time location of their buses through a text file exposed through an FTP server. Unfortunately, this file gives us less than five minutes of data and most of the entries don't have a route number associated with them. Riders lookup bus information by route number, so without it, the data isn't very useful.
Solution
Transform and Store Data - Python Scripts
Process GTFS - Fetches the HRT GTFS package and stores the scheduled stop times for a single day in MongoDB.
Process FTP - Fetches the HRT FTP file and stores the data in MongoDB. Also attempts to set route number when it's missing.
Create a virtual environment in the top level directory of the repo
$ virtualenv venv --distribute
Activate the environment
$ source venv/bin/activate
-OR- for Windows
$ venv\Scripts\activate.bat
Install dependencies
$ pip install -r requirements.txt
Scripts
If you would like to develop the scripts, you will need your own MongoDB instance. I recommend mLab. If you just want to work on the web app, feel free to skip the part about the scripts. Ask someone on the team for read-only access to our production MongoDB instance.
Web App
Set MongoDB URI (substitue your own MongoDB instance if you have one)