Sign plates located in each Parking zone
A sign plate is where the parking restrictions are displayed. This data set displays parking sign plates that are within a parking zone. There can be multiple restrictions per parking zone
This data can be linked to both the street segments to a parking zone dataset https://data.melbourne.vic.gov.au/Transport/Parking-zones-linked-to-street-segments/efqn-hcbk
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/sign-plates-located-in-each-parking-zone-36jw-e4ss\".\"sign_plates_located_in_each_parking_zone\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.