TDOT Traffic Counts
Data pulled from TDOTs traffic history webmap (https://www.arcgis.com/apps/webappviewer/index.html?id=075987cdae37474b88fa400d65681354).
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 \"internal-chattadata/tdot-traffic-counts-9kb7-bs9r\".\"tdot_traffic_counts\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.