2015 HPMS - Dynamically Segmented
The Highway Performance Monitoring System (HPMS) compiles data on highway network extent, use, condition, and performance. The system consists of a geospatially‐enabled database that is used to generate reports and provides tools for data analysis. Information from HPMS is used by many stakeholders across the US DOT, the Administration, Congress, and the transportation community.
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-transportation-gov/2015-hpms-dynamically-segmented-ccjq-w54n\".\"2015_hpms_dynamically_segmented\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.