From 33429518d6cc9504382508cbf054f48537ef88dd Mon Sep 17 00:00:00 2001 From: Tim Millet Date: Thu, 17 Jun 2021 15:53:47 -0400 Subject: [PATCH] Definition Improvement of Trip Durations - Better definition of the "mean" and "safe" concepts - Replace "travel" durations (rider-oriented) by "trip" durations (vehicle-oriented) - Define when the trip durations start and end - Consistency and complementarity with wait time definitions in [Internal] GOFS phase 1: Service Discoverability (Draft) (URL:https://docs.google.com/document/d/1f_QBieLKAhX_xBGPNKPc82KvxlwLTHvunKFp41-_aYA/edit#heading=h.o5w29bphr5n8) --- spec/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/reference.md b/spec/reference.md index 538963a..64fdeb1 100644 --- a/spec/reference.md +++ b/spec/reference.md @@ -86,8 +86,8 @@ In order for a trip planner to provide a user with information about how to requ | `end_pickup_dropoff_window` | Time | **Conditionally Required** | Time that on-demand service ends in a GeoJSON location or location group.

**Conditionally Required**:
- **Required** if `stop_times.stop_id` refers to `location_groups.location_group_id` or `id` from `locations.geojson`.
- **Forbidden** if `stop_times.stop_id` refers to `stops.stop_id`. | | `pickup_type` | Enum | **Conditionally Forbidden** | Indicates pickup method. Valid options are:

`0` or empty - Regularly scheduled pickup.
`1` - No pickup available.
`2` - Must phone agency to arrange pickup.
`3` - Must coordinate with driver to arrange pickup.

**Conditionally Forbidden**:
- `pickup_type=0` **forbidden** for `stop_times.stop_id` referring to `location_groups.location_group_id` or `id` from `locations.geojson`.
- `pickup_type=3` **forbidden** for `location_groups.location_group_id` or `locations.geojson` that are not a single `"LineString"`.
- Optional otherwise. | | `drop_off_type` | Enum | **Conditionally Forbidden** | Indicates drop off method. Valid options are:

`0` or empty - Regularly scheduled drop off.
`1` - No drop off available.
`2` - Must phone agency to arrange drop off.
`3` - Must coordinate with driver to arrange drop off.

**Conditionally Forbidden**:
- `drop_off_type=0` **forbidden** for `stop_times.stop_id` referring to `location_groups.location_group_id` or `id` from `locations.geojson`.
- Optional otherwise. -| `mean_duration_factor`

and

`mean_duration_offset` | Float | **Conditionally Forbidden** | Together, `mean_duration_factor` and `mean_duration_offset` allow an estimation of the duration a rider’s trip will take, in minutes, using the on-demand service in a GeoJSON location or location group.

Data consumers are expected to use `mean_duration_factor` and `mean_duration_offset` to make the following calculation:

`MeanTravelDuration = mean_duration_factor × DrivingDuration + mean_duration_offset`

Where `DrivingDuration` is the time it would take in a car to travel the distance being calculated for the on-demand service, and `MeanTravelDuration` is the calculated average time one expects to travel the same trip using the on-demand service.

The `MeanTravelDuration` may be calculated for the time and the day of the trip to take into account traffic; in other words the consumer is expected to know that `DrivingDuration` is dynamic. Producers should thus provide values that reflect increases in `DrivingDuration` due to additional pickups and drop offs beyond that of the passenger. A downtown TNC will likely always have a `mean_duration_factor` of 1, with or without traffic, since it goes with the flow. But a shared service can have a factor of 2 or more if many additional pickups and drop offs are expected. `mean_duration_offset` can be utilized to increase travel times of shorter trips relatively more than times for longer trips.

While traveling through undefined space between GeoJSON locations or location groups, it is assumed that:

`MeanTravelDuration = DrivingDuration`

**Conditionally Forbidden**:
- **Forbidden** if `stop_times.stop_id` does not refer to a `location_groups.location_group_id` or an `id` from `locations.geojson`.
- Optional otherwise. | -| `safe_duration_factor`

and

`safe_duration_offset` | Float | **Conditionally Forbidden** | Together, `safe_duration_factor` and `safe_duration_offset` allow an estimation of the longest amount of time a rider can expect the on-demand service in a GeoJSON location or location group may require, in minutes, for 95% of trips.

Data consumers are expected to use `safe_duration_factor` and `safe_duration_offset` to make the following calculation:

`SafeTravelDuration = safe_duration_factor × DrivingDuration + safe_duration_offset`

Where `DrivingDuration` is the time it would take in a car to travel the distance being calculated for the on-demand service, and `SafeTravelDuration` is the longest amount of time a rider can expect the on-demand service in a GeoJSON location or location group may require.

**Conditionally Forbidden**:
- **Forbidden** if `stop_times.stop_id` does not refer to a `location_groups.location_group_id` or an `id` from `locations.geojson`.
- Optional otherwise. | +| `mean_duration_factor`

and

`mean_duration_offset` | Float | **Conditionally Forbidden** | Together, `mean_duration_factor` and `mean_duration_offset` allow an estimation of the mean trip duration, in minutes, of an on-demand service in a GeoJSON location or location group. “Mean” represents the average time the rider travel in the vehicle based on historical data. The trip duration starts at rider pickup, and ends at rider drop off.

Data consumers are expected to use `mean_duration_factor` and `mean_duration_offset` to make the following calculation:

`MeanTripDuration = mean_duration_factor × DrivingDuration + mean_duration_offset`

Where `DrivingDuration` is the time it would take in a car to travel the distance being calculated for the on-demand service, and `MeanTripDuration` is the calculated average time one expects to travel the same trip using the on-demand service.

The `MeanTripDuration` may be calculated for the time and the day of the trip to take into account traffic; in other words the consumer is expected to know that `DrivingDuration` is dynamic. Producers should thus provide values that reflect increases in `DrivingDuration` due to additional pickups and drop offs beyond that of the passenger. A downtown TNC will likely always have a `mean_duration_factor` of 1, with or without traffic, since it goes with the flow. But a shared service can have a factor of 2 or more if many additional pickups and drop offs are expected. `mean_duration_offset` can be utilized to increase the duration of shorter trips relatively more than times for longer trips.

While traveling through undefined space between GeoJSON locations or location groups, it is assumed that:

`MeanTripDuration = DrivingDuration`

**Conditionally Forbidden**:
- **Forbidden** if `stop_times.stop_id` does not refer to a `location_groups.location_group_id` or an `id` from `locations.geojson`.
- Optional otherwise. | +| `safe_duration_factor`

and

`safe_duration_offset` | Float | **Conditionally Forbidden** | Together, `safe_duration_factor` and `safe_duration_offset` allow an estimation of the safe trip duration, in minutes, of an on-demand service in a GeoJSON location or location group. The safe trip duration represents the 95th percentile of trip durations based on historical data. Statistically, the rider will travel in the vehicle for an amount of time equal to or less than safe trip duration for 95% of the time. The trip duration starts at rider pickup, and ends at rider drop off.

Data consumers are expected to use `safe_duration_factor` and `safe_duration_offset` to make the following calculation:

`SafeTripDuration = safe_duration_factor × DrivingDuration + safe_duration_offset`

Where `DrivingDuration` is the time it would take in a car to travel the distance being calculated for the on-demand service, and `SafeTripDuration` is the longest amount of time a rider can expect the on-demand service in a GeoJSON location or location group may require.

**Conditionally Forbidden**:
- **Forbidden** if `stop_times.stop_id` does not refer to a `location_groups.location_group_id` or an `id` from `locations.geojson`.
- Optional otherwise. | ## GTFS-BookingRules