-
Notifications
You must be signed in to change notification settings - Fork 31
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
Default implementation for TripCreator with frequency support #146
Comments
Currently the standard trips creator uses a kind of standartized time table input format, with the idea to cover all possibilities. In Managua we also have frequency/interval based data, we just converted it to the timetable format with a simple script. Your proposed direct interval approach is surely a simplification, which is interesting. Is your proposal to remove the timetable input and to replace it with the |
Just for reference, you can find it here.
I would say, if the |
👍 fully agreed with @ialokim:
|
Very nice idea 👍 |
The |
We should allow the default TripCreator to work without schedule data and then generate a GTFS with a
frequency.txt
file that only uses OSM data.Even if it won't fit all needs, it will allow to create very easily a first GTFS from OSM data that could even be usable for some simple cases (long distances buses with low frequency, ferries and shuttle bus, subways with high frequency, etc)
We can use
interval
OSM tag to get the frequency : https://wiki.openstreetmap.org/wiki/Key:intervalopening_hours
to define the stop time at the first stopsduration
key (and the GTFS interpolate stop time utility) to deduce times at each stopsThe Accra creator is a good start to implement this as it already does that.
Well, almost :
opening_hours
hard codedtravel_time
tag instead ofduration
andfrequency
tag instead ofinterval
interval
tag is not supportedThe text was updated successfully, but these errors were encountered: