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
Now we make use of stopSequence and maxStopSequence to know if the trip ends. (gtfs2arrdep)
What if stopSequence is not set? Can we still calculate arrivals and departures?
The consequence of not using above feature is that we'll be reading (and loading in memory) arrivals 'till end of stream, because of no match. This will definitely give memory issues.
A solution without the feature is to set a time-offset that arrivals are possible after a departure, e.g. 4 hours.
The text was updated successfully, but these errors were encountered:
brechtvdv
added a commit
to brechtvdv/arrdep2connections
that referenced
this issue
Sep 11, 2015
Now we make use of
stopSequence
andmaxStopSequence
to know if the trip ends. (gtfs2arrdep)The consequence of not using above feature is that we'll be reading (and loading in memory) arrivals 'till end of stream, because of no match. This will definitely give memory issues.
A solution without the feature is to set a time-offset that arrivals are possible after a departure, e.g. 4 hours.
The text was updated successfully, but these errors were encountered: