db-vendo-client/p/bvg
2021-11-08 14:18:47 +01:00
..
base.json BVG: update API endpoint, add new integration test fixtures 2021-11-08 14:18:47 +01:00
example.js departures/arrivals, locations, nearby, stop: opt.stationLines -> linesOfStops 💥 📝 2019-02-28 16:45:18 +01:00
index.js BVG: parse high occupancies 2021-10-29 13:03:58 +02:00
products.js BVG profile 2018-07-29 20:17:50 +02:00
readme.md BVG: support BerlKönig, docs 📝 2020-01-05 17:50:55 +01:00

BVG profile for hafas-client

Verkehrsverbund Berlin-Brandenburg (BVG) is the major local transport provider in Berlin. This profile adds BVG-specific customizations to hafas-client.

Usage

const createClient = require('hafas-client')
const bvgProfile = require('hafas-client/p/bvg')

// create a client with BVG profile
const client = createClient(bvgProfile, 'my-awesome-program')

Customisations

  • parses BVG-specific products (such as X-Bus)
  • supports BerlKönig journey legs
  • strips parts from station names that are unnecessary in the Berlin context
  • parses line names to give more information (e.g. "Is it an express bus?")
  • renames Ringbahn line names to contain and

BerlKönig

BVG has recently announced a ride-sharing service called BerlKönig. Pass berlkoenig: true into journeys() to get special legs:

{
	mode: 'walking',
	departure: // …
	arrival: // …
	origin: // …
	destination: // …
	line: {
		type: 'line',
		name: 'BerlKönig',
		public: true,
		mode: 'taxi',
		product: 'berlkoenig'
	}
}