Bus Stops
This dataset contains the shape file of all bus stops as per the GTFS data feed released during May 2020. Please refer to latest GTFS file at https://www.transport.act.gov.au/contact-us/information-for-developers
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 \"data-act-gov-au/bus-stops-5inc-8tjs\".\"bus_stops\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.