You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gtfs is also valid if come with empty calendar.txt file and all information about service_id validity in calendar_dates.txt File.
From GTFS reference:
Alternate: Omit calendar.txt, and include ALL dates of service in calendar_dates.txt. If your schedule varies most days of the month, or you want to programmatically output service dates without specifying a normal weekly schedule, this approach may be preferable.
In this case without feed_id in the table I cannot associate service_id to trips.
Yes, the "calendar_dates.txt only" strategy is the strategy used by the Portland TriMet feed, arguably one of the most important GTFS feeds. multigtfs handles this by adding a single Service record with a blank start_date and end_date, and relates the ServiceDate records to the Feed through this. On export, calendar.txt is omitted if there is only this "fake" Service record. See commit 2960772 for the changes and tests that aded this support.
service_date table doesn't have feed_id field so it's impossible manage multigtfs that use calendar_dates information
The text was updated successfully, but these errors were encountered: