The Transit Operational Data Standard (TODS) is an open standard for describing how to operate scheduled transit operations which can be used to port scheduled operations between software products (e.g. scheduling systems and CAD/AVL systems), agencies, and more. TODS leverages the existing General Transit Feed Specification (GTFS) and extends it to include information about personnel and non-revenue service.
Complete documentation published at: https://tods.mobilitydata.org
The TODS Specification is licensed under the Apache License 2.0 (code) and Creative Commons Attribution 4.0 (sample data, specification, and documentation) as defined in file.
If you use the Transit Operational Data Standard in a report or article, please cite it as follows:
Transit Operational Data Standard Working Group. 2022. Transit Operational Data Standard. Transit Operational Data Standard Board of Directors. https://tods.mobilitydata.org.
Additional citation styles can be found in CITATION.
- In Terminal, change the directory to one where you wish to build the site.
- Ensure you have an up-to-date version of pip:
- Linux:
pip install pip
orpip install --upgrade pip
- macOS:
pip3 install pip
orpip3 install --upgrade pip
- Linux:
- Clone this repository:
git clone https://github.com/MobilityData/operational-data-standard
- Change the directory to the cloned repository, and create & enable a Python virtual environment:
python3 -m venv venv
source venv/bin/activate
- Have
requirements.txt
installed:- Linux:
pip install --force-reinstall -r requirements.txt
- macOS:
pip3 install --force-reinstall -r requirements.txt
- Linux:
- To run the site locally (command defined in
MakeFile
):make serve
- Then you can reach the site at this address:
http://127.0.0.1:8000/
- To shut down MKdocs from serving the site:
make killserve
- To build the site locally only (command defined in
MakeFile
):make build
- Deactivate the Python virtual environment when done:
deactivate