Transfer alert service
Public Transport ETA can generate automatic transfer alerts. Three use cases are considered:
-
Trip-Trip transfer alerts
The system estimates the time to accomplish the transfer between two trips (trip_from, trip_to) at defined public stops (public_stop_from, public_stop_to). The system raises an alert if the transfer time computed according to the real-time information exceeds the planned schedule by a specified threshold.
-
Trip-route transfer alerts
The system estimates the time to accomplish the transfer between a trip (trip_from) and a route (route_to) at defined public stops (public_stop_from, public_stop_to). The system raises an alert if the transfer time computed according to the real-time information exceeds the planned schedule by a specified threshold.
-
Route-route transfer alerts
The system evaluates the time to accomplish the transfer between two routes (route_from, route_to) at defined public stops (public_stop_from, public_stop_to). The system raises an alert if the transfer time computed according to the real-time information exceeds the planned schedule by a specified threshold.
An alert is raised when the following condition is satisfied:
| Variable | Description |
|---|---|
| trs | Transfer time computed according to the planned schedule, measured in seconds. |
| trr | Transfer time computed according to the real-time information, measured in seconds. |
| a | Alert threshold |
| tmin | Minimum time to arrive from public_stop_from to public_stop_to |
|
|
Time of the next arrival of the trip_from at stop_from |
|
|
Time to the next arrival of a trip of trip_to at stop_to after the time instant given by: |
|
|
Arrival time of trip_from at stop_from |
The services are made available externally by dedicated APIs (→ Public transport API).