ETS GTFS Feed: Trip Schedule
Data from the various .txt files in https://gtfs.edmonton.ca/TMGTFSRealTimeWebService/GTFS/gtfs.zip joined together to create a more user-friendly representation of transit schedule data.
Day of the week information is missing because the above GTFS feed does not include data in calendar.txt. The service_id value is included to facilitate joining with data from calendar_dates.txt, which is available separately at https://data.edmonton.ca/Transit/ETS-Bus-Schedule-GTFS-Data-Feed-Calendar-Dates/f2sy-bth7.
See also https://developers.google.com/transit/gtfs/reference.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \ -H "Content-Type: application/json" \ -d@-<<EOF {"sql": " SELECT * FROM \"edmonton-ca/ets-gtfs-feed-trip-schedule-4fvt-p2se\".\"ets_gtfs_feed_trip_schedule\" LIMIT 100 "} EOF
See the Splitgraph documentation for more information.