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
{{ message }}
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.
Open trips.txt (preferably in something that recognizes CSV)
Search for 14415
Copy one of the values from the trip_id column
Open stop_times.txt
Search for the trip_id copied from 4 above
Search 10215 in the stop_id columns.
Alternatively (& could someone better at SQL can verify the query?) connect to the DB & run this query:
SELECT stop_times., routes. FROM stop_times LEFT JOIN trips ON stop_times.trip_id = trips.trip_id LEFT JOIN routes ON trips.route_id = routes.route_id WHERE trips.route_id = 14415 GROUP BY stop_times.stop_id
So either Google never updates their data, MDT is giving them different data, or they're having fun with the GTFS data publicly available :P
Hey Adrian, when I tried to do any of the following it gave me "There was an error fetching the route information"
The text was updated successfully, but these errors were encountered: