Hello again. I'm dipping my toes into the realtime bus endpoint and am surprised at the trip ID values. The realtime bus endpoint has trip IDs ranging from 6852226-6897652. If you examine the current GTFS file, the bus trip IDs currently range from 6945225-6992527. At first glance these IDs are outdated/invalid.
Getting min/max trip IDs for bus routes from current GTFS dataset:
-- route_type=3 is bus routes
> select min(trip_id), max(trip_id) from trips join routes on routes.route_id = trips.route_id where routes.route_type = "3";
6945225|6992527
The realtime bus endpoint I just referenced for this:
http://developer.itsmarta.com/BRDRestService/RestBusRealTimeService/GetAllBus
Is the realtime bus data garbage? Is it using trip IDs from an outdated GTFS schedule?
Jake Swanson