Bike Share Dock Locations
<b>This dataset show the historical Melbourne Bike Share docks. This program came to an end in Novemer 2019. </b>
Contains the bike share dock locations that were deployed across Melbourne as part of the Melbourne Bike Share Program.
Melbourne Bike Share is a joint RACV/Victorian Government bicycle hire scheme. It allows commuters to hire a bike from a dock location and return it to another dock location in the city. This dataset contains the bike share dock locations and capacity across the city.
This dataset can be joined to the <a href='https://data.melbourne.vic.gov.au/Transport-Movement/Melbourne-Bike-Share-stations-with-current-number-/tdvh-n9dv'>bike share data feed</a> using the column <i>station_id</i>.
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/bike-share-dock-locations-vrwc-rwgm\".\"bike_share_dock_locations\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.