Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GTFS Trip-Modifications #403

Merged
merged 42 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
b2bfcf5
Add Trip-Modification, make shape non-experimental
gcamp Sep 25, 2023
ab5e996
Create a page for TripModifications entities for consistency with TU …
npaun Oct 10, 2023
7887381
Clarify providing TUs for modified trips and ReplacementStop time int…
npaun Oct 10, 2023
da1c109
Merge remote-tracking branch 'google/master' into gtfsrt/trip_modific…
gcamp Oct 11, 2023
52d4064
Fix first_stop_reference.png not having the right image + optimize im…
gcamp Oct 12, 2023
c2f88a0
Fix optional/require for Stop message
gcamp Oct 19, 2023
9a0d6d5
Clarify behaviour and linkage to TripUpdates
gcamp Oct 23, 2023
7a67845
Apply Modification clarification proposed changes
gcamp Oct 23, 2023
364e32b
Use ModifiedTripSelector instead of concatenation of IDs
gcamp Dec 5, 2023
f3944b0
Add details on behavior when is provided
gcamp Dec 6, 2023
8533985
Remove modifications_id
gcamp Dec 11, 2023
121049c
Merge pull request #12 from TransitApp/feature/trip_modification_sele…
gcamp Dec 11, 2023
4b90e8a
Fix after comments from @bdferris-v2
gcamp Dec 20, 2023
7ef14f5
Add note about producer needed the two versions of trip updates
gcamp Dec 21, 2023
8f5d394
Fix bad relationship mentionned, + force no other entity when using M…
gcamp Jan 8, 2024
0126942
Changes after Jan 10 call
gcamp Jan 11, 2024
429c56b
Merge remote-tracking branch 'google/master' into gtfsrt/trip_modific…
gcamp Jan 17, 2024
e0b0f48
Add experimental notices
gcamp Feb 20, 2024
14e4259
Remove mention of stop pattern
gcamp Feb 20, 2024
36f3cac
Use stop selector instead of stop sequence only
gcamp Feb 20, 2024
b92a5b2
Update to end_stop_selector
gcamp Feb 21, 2024
fb9c8df
Update proto with start/end stop selector
gcamp Feb 21, 2024
b5f65bf
Add selected trips
gcamp Feb 21, 2024
f26ded5
Update reference with SelectedTrips
gcamp Feb 21, 2024
5e6f44c
Update trip modif doc
gcamp Feb 21, 2024
a91db62
Add last_modified_time
gcamp Feb 21, 2024
47a3ceb
Add missing start_times in pb
gcamp Feb 22, 2024
99aba67
Fix typos, fix description of selected trips
gcamp Feb 22, 2024
c4e94d9
Fix typos
gcamp Feb 22, 2024
437fc84
Update reference for clarity
gcamp Feb 22, 2024
ae77b32
Clarify and remove duplicated information
gcamp Feb 22, 2024
1c54a21
Consistancy
gcamp Feb 22, 2024
be4a9c6
Changes before experimental vote
gcamp Feb 22, 2024
51980b8
Revert correctly shape experimental
gcamp Feb 28, 2024
5afb5de
Merge branch 'final/trip_modification' into gtfsrt/trip_modifications
gcamp Feb 28, 2024
2721fe0
Editorial, formatting clarifications
jfabi Mar 1, 2024
a1e4af7
Merge pull request #17 from jfabi/gtfsrt/trip_modifications_editorial
gcamp Mar 5, 2024
19b4d2e
Apply suggestions from @sam-hickey-ibigroup
gcamp Mar 5, 2024
37f290d
Update documentation images with new fields, add source files
gcamp Mar 5, 2024
418702a
Clarifies behavior of propagated_modification_delay when no stop_time…
gcamp Mar 5, 2024
b437508
Remove extra word
gcamp Mar 5, 2024
4be2666
Sync .proto and reference files
gcamp Mar 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 156 additions & 0 deletions gtfs-realtime/proto/gtfs-realtime.proto
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ message FeedEntity {

// NOTE: This field is still experimental, and subject to change. It may be formally adopted in the future.
optional Shape shape = 6;
optional Stop stop = 7;
gcamp marked this conversation as resolved.
Show resolved Hide resolved
optional TripModifications trip_modifications = 8;

// The extensions namespace allows 3rd-party developers to extend the
// GTFS Realtime Specification in order to add and evaluate new features and
Expand Down Expand Up @@ -840,6 +842,15 @@ message TripDescriptor {
}
optional ScheduleRelationship schedule_relationship = 4;

message ModifiedTripSelector {
// The 'id' from the FeedEntity in which the contained TripModifications object affects this trip.
optional string modifications_id = 1;

// The trip_id from the GTFS feed that is modified by the modifications_id
optional string affected_trip_id = 2;
}
optional ModifiedTripSelector modified_trip = 7;

// 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.
Expand Down Expand Up @@ -1033,3 +1044,148 @@ message Shape {
// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

// Describes a stop which is served by trips. All fields are as described in the GTFS-Static specification.
// NOTE: This message is still experimental, and subject to change. It may be formally adopted in the future.
message Stop {
enum WheelchairBoarding {
UNKNOWN = 0;
AVAILABLE = 1;
NOT_AVAILABLE = 2;
}

optional string stop_id = 1;
gcamp marked this conversation as resolved.
Show resolved Hide resolved
optional TranslatedString stop_code = 2;
optional TranslatedString stop_name = 3;
optional TranslatedString tts_stop_name = 4;
optional TranslatedString stop_desc = 5;
optional float stop_lat = 6;
optional float stop_lon = 7;
gcamp marked this conversation as resolved.
Show resolved Hide resolved
gcamp marked this conversation as resolved.
Show resolved Hide resolved
optional string zone_id = 8;
optional TranslatedString stop_url = 9;
optional string parent_station = 11;
optional string stop_timezone = 12;
optional WheelchairBoarding wheelchair_boarding = 13 [default = UNKNOWN];
optional string level_id = 14;
optional TranslatedString platform_code = 15;

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

// NOTE: This field is still experimental, and subject to change. It may be formally adopted in the future.
message TripModifications {
// A `Modification` message replaces a span of n stop times from each affected trip starting at `start_stop_selector`.
message Modification {
// The stop selector of the first stop_time of the original trip that is to be affected by this modification.
// Used in conjuction with `end_stop_selector`.
// `start_stop_selector` is required and is used to define the reference stop used with `travel_time_to_stop`.
optional StopSelector start_stop_selector = 1;

// The stop selector of the last stop of the original trip that is to be affected by this modification.
// The selection is inclusive, so if only one stop_time is replaced by that modification, `start_stop_selector` and `end_stop_selector` must be equivalent.
// If no stop_time is replaced, `end_stop_selector` must not be provided. It's otherwise required.
optional StopSelector end_stop_selector = 2;

// The number of seconds of delay to add to all departure and arrival times following the end of this modification.
// If multiple modifications apply to the same trip, the delays accumulate as the trip advances.
optional int32 propagated_modification_delay = 3 [default = 0];

// A list of replacement stops, replacing those of the original trip.
// The length of the new stop times may be less, the same, or greater than the number of replaced stop times.
repeated ReplacementStop replacement_stops = 4;

// An `id` value from the `FeedEntity` message that contains the `Alert` describing this Modification for user-facing communication.
optional string service_alert_id = 5;

// This timestamp identifies the moment when the modification has last been changed.
// In POSIX time (i.e., number of seconds since January 1st 1970 00:00:00 UTC).
optional uint64 last_modified_time = 6;

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

message SelectedTrips {
// A list of trips affected with this replacement that all have the same new `shape_id`.
repeated string trip_ids = 1;
// The ID of the new shape for the modified trips in this SelectedTrips.
// May refer to a new shape added using a GTFS-RT Shape message, or to an existing shape defined in the GTFS-Static feed’s shapes.txt.
optional string shape_id = 2;

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

// A list of selected trips affected by this TripModifications.
repeated SelectedTrips selected_trips = 1;

// A list of start times in the real-time trip descriptor for the trip_id defined in trip_ids.
// Useful to target multiple departures of a trip_id in a frequency-based trip.
repeated string start_times = 2;

// Dates on which the modifications occurs, in the YYYYMMDD format. Producers SHOULD only transmit detours occurring within the next week.
// The dates provided should not be used as user-facing information, if a user-facing start and end date needs to be provided, they can be provided in the linked service alert with `service_alert_id`
repeated string service_dates = 3;

// A list of modifications to apply to the affected trips.
repeated Modification modifications = 4;

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

// NOTE: This field is still experimental, and subject to change. It may be formally adopted in the future.
// Select a stop by stop sequence or by stop_id. At least one of the two values must be provided.
message StopSelector {
// Must be the same as in stop_times.txt in the corresponding GTFS feed.
optional uint32 stop_sequence = 1;
// Must be the same as in stops.txt in the corresponding GTFS feed.
optional string stop_id = 2;

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}

// NOTE: This field is still experimental, and subject to change. It may be formally adopted in the future.
message ReplacementStop {
// The difference in seconds between the arrival time at this stop and the arrival time at the reference stop. The reference stop is the stop prior to start_stop_selector. If the modification begins at the first stop of the trip, then the first stop of the trip is the reference stop.
// This value MUST be monotonically increasing and may only be a negative number if the first stop of the original trip is the reference stop.
optional int32 travel_time_to_stop = 1;
gcamp marked this conversation as resolved.
Show resolved Hide resolved

// The replacement stop ID which will now be visited by the trip. May refer to a new stop added using a GTFS-RT Stop message, or to an existing stop defined in the GTFS-Static feed’s stops.txt. The stop MUST have location_type=0 (routable stops).
optional string stop_id = 2;
gcamp marked this conversation as resolved.
Show resolved Hide resolved

// 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.
extensions 1000 to 1999;

// The following extension IDs are reserved for private use by any organization.
extensions 9000 to 9999;
}
1 change: 1 addition & 0 deletions gtfs-realtime/spec/en/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The specification currently supports the following types of information:
* **Trip updates** - delays, cancellations, changed routes
* **Service alerts** - stop moved, unforeseen events affecting a station, route or the entire network
* **Vehicle positions** - information about the vehicles including location and congestion level
* **Trip modifications** - information about detours affecting a set of trips

A feed may, although not required to, combine entities of different types. Feeds are served via HTTP and updated frequently. The file itself is a regular binary file, so any type of webserver can host and serve the file (other transfer protocols might be used as well). Alternatively, web application servers could also be used which as a response to a valid HTTP GET request will return the feed. There are no constraints on how frequently nor on the exact method of how the feed should be updated or retrieved.

Expand Down
12 changes: 12 additions & 0 deletions gtfs-realtime/spec/en/feed-entities.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ use data on current speed and odometer readings from the vehicle.

[More about Vehicle Position updates...](vehicle-positions.md)

## Trip Modifications

#### "These trips are affected by a detour on certain days"

Trip modifications are used to describe detours which affect a set of trips.

A trip modification can cancel certain stops, adjust the timing for trips,
provide a new shape that trips will take and provide the location of temporary
stops along the way.

[More about Trip Modifications...](trip-modifications.md)

## Historical remark on feed types

Early versions of GTFS Realtime Specification required each feed to only contain
Expand Down
5 changes: 5 additions & 0 deletions gtfs-realtime/spec/en/images/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Documentation images

## Excalidraw files

Files with the `.excalidraw` extension can be opened and edited with https://excalidraw.com
Loading
Loading