Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 2.26 KB

File metadata and controls

40 lines (30 loc) · 2.26 KB

Transit Operational Data Standard

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

License to Use

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.

Citation

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.

Building the site locally

  1. In Terminal, change the directory to one where you wish to build the site.
  2. Ensure you have an up-to-date version of pip:
    • Linux: pip install pip or pip install --upgrade pip
    • macOS: pip3 install pip or pip3 install --upgrade pip
  3. Clone this repository:
    • git clone https://github.com/MobilityData/operational-data-standard
  4. Change the directory to the cloned repository, and create & enable a Python virtual environment:
    • python3 -m venv venv
    • source venv/bin/activate
  5. Have requirements.txt installed:
    • Linux: pip install --force-reinstall -r requirements.txt
    • macOS: pip3 install --force-reinstall -r requirements.txt
  6. 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
  7. To build the site locally only (command defined in MakeFile):
    • make build
  8. Deactivate the Python virtual environment when done:
    • deactivate