https://github.com/derhuerst/vbb-stations-with-bicycle-parking
VBB stations with nearby bicycle parking facilities.
https://github.com/derhuerst/vbb-stations-with-bicycle-parking
bicycle-infrastructure bvg cycling osm vbb
Last synced: 4 months ago
JSON representation
VBB stations with nearby bicycle parking facilities.
- Host: GitHub
- URL: https://github.com/derhuerst/vbb-stations-with-bicycle-parking
- Owner: derhuerst
- License: isc
- Created: 2018-09-15T12:41:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T17:00:46.000Z (almost 7 years ago)
- Last Synced: 2025-01-07T19:12:13.128Z (6 months ago)
- Topics: bicycle-infrastructure, bvg, cycling, osm, vbb
- Language: JavaScript
- Homepage: https://github.com/derhuerst/vbb-stations-with-bicycle-parking#vbb-stations-with-bicycle-parking
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# vbb-stations-with-bicycle-parking
**VBB stations with nearby bicycle parking facilities.** Taken from [OSM](https://www.openstreetmap.org/).
[](https://www.npmjs.com/package/vbb-stations-with-bicycle-parking)
[](https://travis-ci.org/derhuerst/vbb-stations-with-bicycle-parking)

[](https://gitter.im/derhuerst)
[](https://patreon.com/derhuerst)## Installation
```shell
npm install vbb-stations-with-bicycle-parking
```## Usage
```js
const bikeRacks = require('vbb-stations-with-bicycle-parking/index.json')const atFriedrichstr = bikeRacks['900000100001']
for (let [osmId, capacity] of atFriedrichstr) {
console.log(osmId, capacity)
}
```To get all OSM tags:
```js
const bikeRacksFull = require('vbb-stations-with-bicycle-parking/full.json')const atFriedrichstr = bikeRacksFull['900000100001']
for (let [osmId, tags] of atFriedrichstr) {
console.log(osmId, tags)
}
```## Contributing
If you have a question or need support using `vbb-stations-with-bicycle-parking`, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to [the issues page](https://github.com/derhuerst/vbb-stations-with-bicycle-parking/issues).