Zoning Cases
This data set contains information about zoning cases submitted for review to the City of Austin where records existed. It includes information about case status, case number, proposed use, applicant, owner, and location. Another version of this data in the form of a location dataset exists, showing cases starting in about 2007, when cases were first created in GIS.
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-austintexas-gov/zoning-cases-edir-dcnf\".\"zoning_cases\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.