This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Home
Sean Barbeau edited this page Sep 16, 2016
·
23 revisions
####Table of Contents
- 1 Introduction
- 1.1 What is GTFS-RT
- 1.2 Need for validator
- 1.3 Roadmap
- 2 Technical Overview
- 2.1 Building the project
- 2.2 Sequence Diagram
- 2.3 API
- 2.4 Rules
- 2.5 Sample feeds
Please note that this project is still under development and will not fully perform the intended task of monitoring a GTFS-Realtime feed and logging the errors.
### 1.1 What is the GTFS-RT format From the [developer site for GTFS-RT](https://developers.google.com/transit/gtfs-realtime/), "GTFS-realtime is a feed specification that allows public transportation agencies to provide realtime updates about their fleet to application developers. It is an extension to GTFS (General Transit Feed Specification), an open data format for public transportation schedules and associated geographic information. GTFS-realtime was designed around ease of implementation, good GTFS interoperability and a focus on passenger information."These feeds are now becoming an industrial standard for real-time transit data.
### 1.2 Need for a validator GTFS and GTFS-realtime have become dominant formats for open data in the transit industry. While the GTFS format has a GTFS Feed Validator, no such open-source tool currently exists for GTFS-rt. ### 1.3 RoadmapThere is a roadmap for the project.
##2. Technical Overview This project will implement a tool that takes a GTFS and GTFS-rt feed as input, and examines the GTFS-rt feed to determine if it properly meets GTFS-rt best practices, both those explicitly listed in the spec and those based on the needs of consuming applications. ### 2.1 Building the projectTo build the project, please see the main project README.
### 2.2 Sequence Diagram ![GTFS-Realtime Validator sequence diagram](http://i.imgur.com/1YgAf8E.png) ### 2.3 API This project has a [RESTful API](https://github.com/CUTR-at-USF/gtfs-realtime-validator/wiki/RESTful-API) that is used to start and monitor feeds. ### 2.4 RulesThis project uses rules to validate feeds:
### 2.5 Sample FeedsHere are some sample feeds you can use to test the current validation tool:
- Hillsborough Area Regional Transit (HART)
- GTFS
- GTFS-rt
- TripUpdates (Protocol Buffer, Debug plain text)
- VehiclePositions (Protocol Buffer, Debug plain text)