State Park Boundaries
Boundary File for all Pennsylvania State Parks. Data is from Department of Conservation and Natural Resources. This file has county included and can be used to create maps.
Data is pulled from DCNR Open Data Portal API.
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 \"pa-gov/state-park-boundaries-hcdj-9qkr\".\"state_park_boundaries\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.