Problem
The current GTFS preparation selects a representative Tuesday based on the number of active service_id's.
However, I believe that service_id is a service calendar, not the actual amount of transport service operated on a given day. As a result, the Tuesday with the most service_ids can have fewer trips and served stops than other Tuesdays.
For example in an extract of 50km around Rennes:
Date service_ids trips stop_visits stops
08/09/2026 520 23,308 443,242 9,190
15/09/2026 540 23,454 443,046 8,993
22/09/2026 540 23,629 445,305 9,224
20/10/2026 600 3,844 38,274 3,363
27/10/2026 621 3,807 37,950 3,291
In this example, 27/10 would be selected by the current method because it has the highest number of service_ids, despite an other better choices
Proposed change
Instead of using the number of active service_ids, we could select the representative Tuesday using an other indicator that reflects the actual transport supply, such as:
- the number of active
trip_ids, or
- preferably, the number of
stop_times (stop visits).
The number of stop visits may be the most representative metric, taking, as it reflects both the number of trips and their number of stops.
Alternatively,
We can also merge every Tuesday listed into the GTFS to have the maximal coverage?
Problem
The current GTFS preparation selects a representative Tuesday based on the number of active
service_id's.However, I believe that
service_idis a service calendar, not the actual amount of transport service operated on a given day. As a result, the Tuesday with the mostservice_ids can have fewer trips and served stops than other Tuesdays.For example in an extract of 50km around Rennes:
In this example, 27/10 would be selected by the current method because it has the highest number of
service_ids, despite an other better choicesProposed change
Instead of using the number of active
service_ids, we could select the representative Tuesday using an other indicator that reflects the actual transport supply, such as:trip_ids, orstop_times(stop visits).The number of stop visits may be the most representative metric, taking, as it reflects both the number of trips and their number of stops.
Alternatively,
We can also merge every Tuesday listed into the GTFS to have the maximal coverage?