Parking bay arrivals and departures 2014
The City of Melbourne has installed in-ground parking bay sensors in most CBD parking bays. These sensors record when a vehicle arrives and when it departs. Each record also includes the parking restriction for the bay and whether the vehicle has overstayed that restriction. This is the data for the 2014 calendar year
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 \"melbourne-vic-gov-au/parking-bay-arrivals-and-departures-2014-mq3i-cbxd\".\"parking_bay_arrivals_and_departures_2014\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.