LADOT Traffic Counts Summary
LADOT automated and manual traffic count summary data for intersections throughout Los Angeles. Manual counts ("MAN" under the "Type" column) are generally 6-hr counts which have been expanded using a conversion factor.
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 \"lacity/ladot-traffic-counts-summary-94wu-3ps3\".\"ladot_traffic_counts_summary\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.