Real-Time Traffic Incident Reports
This dataset contains traffic incident information from the Austin-Travis County traffic reports collected from the various Public Safety agencies through a data feed from the Combined Transportation, Emergency, and Communications Center (CTECC).
For further context, see:
The dataset is updated every 5 minutes with the latest snapshot of active traffic incidents.
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 \"datahub-austintexas-gov/realtime-traffic-incident-reports-dx9v-zd7x\".\"realtime_traffic_incident_reports\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.