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
Current state -
The first and last siri_vehicle_location records per siri ride are taken.
Sometimes some of the records are taken before the bus actually started moving (see example from line 480, line ref 7022). the same is probably correct for the last stop (didn't investigate yet).
First stop possible solutions -
Filtering distance_from_journey_start != 0, which is a raw data from MOT siri data. This is not an hermetic solution, because as we can see in the example, the 2 selected rows are actually 350m away from each other (and by looking at google maps you can see that the bus has left the first station), but the value is still 0.
Filtering by the first movement (by the first coordination change) - this is also not an hermetic solution in cases where the bus might be moving in a big "central station".
Further investigation of those patterns in more examples - for example, here we can see that the exact same time was recorded until there was an actual move.
Last stop - this is even trickier, because we need to verify that the last location is related to the actual last stop in gtfs (if this is just a random stop in the middle, it means that this route was not completed successfully).
The text was updated successfully, but these errors were encountered:
Current state -
The first and last
siri_vehicle_location
records per siri ride are taken.Sometimes some of the records are taken before the bus actually started moving (see example from line 480, line ref 7022). the same is probably correct for the last stop (didn't investigate yet).
First stop possible solutions -
distance_from_journey_start != 0
, which is a raw data from MOT siri data. This is not an hermetic solution, because as we can see in the example, the 2 selected rows are actually 350m away from each other (and by looking at google maps you can see that the bus has left the first station), but the value is still 0.Last stop - this is even trickier, because we need to verify that the last location is related to the actual last stop in gtfs (if this is just a random stop in the middle, it means that this route was not completed successfully).
The text was updated successfully, but these errors were encountered: