TripDescriptor Struct Reference

A descriptor that identifies an instance of a GTFS trip, or all instances of a trip along a route. More...

Public Types

enum  ScheduleRelationship { SCHEDULED = 0, ADDED = 1, UNSCHEDULED = 2, CANCELED = 3 }
 The relation between this trip and the static schedule. More...
 

Public Attributes

optional string trip_id = 1
 The trip_id from the GTFS feed that this selector refers to. More...
 
optional string route_id = 5
 The route_id from the GTFS that this selector refers to.
 
optional uint32 direction_id = 6
 The direction_id from the GTFS feed trips.txt file, indicating the direction of travel for trips this selector refers to. More...
 
optional string start_time = 2
 The initially scheduled start time of this trip instance. More...
 
optional string start_date = 3
 The scheduled start date of this trip instance. More...
 
optional ScheduleRelationship schedule_relationship = 4
 
extensions to
 The extensions namespace allows 3rd-party developers to extend the GTFS-realtime specification in order to add and evaluate new features and modifications to the spec. More...
 

Detailed Description

A descriptor that identifies an instance of a GTFS trip, or all instances of a trip along a route.

  • To specify a single trip instance, the trip_id (and if necessary, start_time) is set. If route_id is also set, then it should be same as one that the given trip corresponds to.
  • To specify all the trips along a given route, only the route_id should be set. Note that if the trip_id is not known, then stop sequence ids in TripUpdate are not sufficient, and stop_ids must be provided as well. In addition, absolute arrival/departure times must be provided.

Member Enumeration Documentation

The relation between this trip and the static schedule.

If a trip is done in accordance with temporary schedule, not reflected in GTFS, then it shouldn't be marked as SCHEDULED, but likely as ADDED.

Enumerator
SCHEDULED 

Trip that is running in accordance with its GTFS schedule, or is close enough to the scheduled trip to be associated with it.

ADDED 

An extra trip that was added in addition to a running schedule, for example, to replace a broken vehicle or to respond to sudden passenger load.

UNSCHEDULED 

A trip that is running with no schedule associated to it, for example, if there is no schedule at all.

CANCELED 

A trip that existed in the schedule but was removed.

Member Data Documentation

optional uint32 TripDescriptor::direction_id = 6

The direction_id from the GTFS feed trips.txt file, indicating the direction of travel for trips this selector refers to.

This field is still experimental, and subject to change. It may be formally adopted in the future.

optional string TripDescriptor::start_date = 3

The scheduled start date of this trip instance.

Must be provided to disambiguate trips that are so late as to collide with a scheduled trip on a next day. For example, for a train that departs 8:00 and 20:00 every day, and is 12 hours late, there would be two distinct trips on the same time. This field can be provided but is not mandatory for schedules in which such collisions are impossible - for example, a service running on hourly schedule where a vehicle that is one hour late is not considered to be related to schedule anymore. In YYYYMMDD format.

optional string TripDescriptor::start_time = 2

The initially scheduled start time of this trip instance.

When the trip_id corresponds to a non-frequency-based trip, this field should either be omitted or be equal to the value in the GTFS feed. When the trip_id correponds to a frequency-based trip, the start_time must be specified for trip updates and vehicle positions. If the trip corresponds to exact_times=1 GTFS record, then start_time must be some multiple (including zero) of headway_secs later than frequencies.txt start_time for the corresponding time period. If the trip corresponds to exact_times=0, then its start_time may be arbitrary, and is initially expected to be the first departure of the trip. Once established, the start_time of this frequency-based trip should be considered immutable, even if the first departure time changes – that time change may instead be reflected in a StopTimeUpdate. Format and semantics of the field is same as that of GTFS/frequencies.txt/start_time, e.g., 11:15:35 or 25:15:35.

extensions TripDescriptor::to

The extensions namespace allows 3rd-party developers to extend the GTFS-realtime specification in order to add and evaluate new features and modifications to the spec.

optional string TripDescriptor::trip_id = 1

The trip_id from the GTFS feed that this selector refers to.

For non frequency-based trips, this field is enough to uniquely identify the trip. For frequency-based trip, start_time and start_date might also be necessary.


The documentation for this struct was generated from the following file:
  • gtfs-realtime.proto