db-vendo-client/p/db/example.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-11-13 00:38:09 +01:00
'use strict'
const createClient = require('../../')
const dbProfile = require('.')
2017-11-13 00:38:09 +01:00
const client = createClient(dbProfile, 'hafas-client-example')
2017-11-13 00:38:09 +01:00
// Berlin Jungfernheide to München Hbf
client.journeys('8011167', '8000261', {results: 1, tickets: true})
2017-11-13 00:38:09 +01:00
// client.departures('8011167', {duration: 1})
// client.arrivals('8011167', {duration: 10, linesOfStops: true})
2017-11-13 00:38:09 +01:00
// client.locations('Berlin Jungfernheide')
// client.locations('Atze Musiktheater', {poi: true, addressses: false, fuzzy: false})
// client.stop('8000309') // Regensburg Hbf
2018-06-28 12:08:54 +02:00
// client.nearby({
// type: 'location',
// latitude: 52.4751309,
// longitude: 13.3656537
// }, {results: 1})
2018-08-26 18:35:27 +02:00
// client.reachableFrom({
// type: 'location',
// address: '13353 Berlin-Wedding, Torfstr. 17',
// latitude: 52.541797,
// longitude: 13.350042
// }, {
// when: new Date('2018-08-27T10:00:00+0200'),
// maxDuration: 50
// })
2019-07-20 12:47:32 +02:00
// client.radar({
// north: 52.52411,
// west: 13.41002,
// south: 52.51942,
// east: 13.41709
// }, {results: 10})
2017-11-13 00:38:09 +01:00
.then((data) => {
console.log(require('util').inspect(data, {depth: null, colors: true}))
2017-11-13 00:38:09 +01:00
}, console.error)