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

Add in-seat transfers to transfers.txt #31

Merged
merged 1 commit into from
Sep 29, 2022
Merged
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions reference/gtfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,14 +339,14 @@ Field Name | GTFS spec | Status | Notes
---------- | -------- | ------ | ----------
from_stop_id | Required | Included |
to_stop_id | Required | Included |
transfer_type | Required | Included |
transfer_type | Required | Included | Includes usage of the [relatively new `4` value](https://github.com/google/transit/blob/master/gtfs/spec/en/reference.md#linked-trips) to link trips between which riders are allowed to remain aboard.
min_transfer_time | Optional | Included (some records) | As specified in the GTFS standard, this field is the sum of `min_walk_time` and `suggested_buffer_time`.
min_walk_time | Experimental | Included (some records) | Minimum time required to travel by foot from `from_stop_id` to `to_stop_id`.
min_wheelchair_time | Experimental | Included (some records) | Minimum time required to travel by wheelchair `from_stop_id` to `to_stop_id`. If the transfer is not wheelchair accessible, this field will be blank.
suggested_buffer_time | Experimental | Included (some records) | Recommended buffer time to allow to make a successful transfer between two services. This is also partly based on the significance of missing the transfer (due to service frequency).
wheelchair_transfer | Experimental | Included (some records) | Identifies whether a transfer is accessible to customers using a wheelchair. The field can have the following values:<ul><li>`0` (or empty): indicates that there is no accessibility information for the transfer</li><li>`1`: indicates that the transfer is wheelchair accessible</li><li>`2`: transfer not accessible to persons in wheelchairs</li></ul>
from_trip_id | Experimental | Included (some records) | If present, specifies that the transfer is exclusively valid from this trip to the trip specified in `to_trip_id`.
to_trip_id | Experimental | Included (some records) | If present, specifies that the transfer is exclusively valid to this trip from the trip specified in `from_trip_id`.
from_trip_id | Optional | Included (some records) | If present, specifies that the transfer is exclusively valid from this trip to the trip specified in `to_trip_id`.
to_trip_id | Optional | Included (some records) | If present, specifies that the transfer is exclusively valid to this trip from the trip specified in `from_trip_id`.

## trips.txt

Expand Down