Rest Areas Across NY
This data set contains the New York State Department of Transportation maintained rest areas across New York state.
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 \"ny-gov/rest-areas-across-ny-qebf-4fd8\".\"rest_areas_across_ny\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.