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

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-05-07 16:17:37 +02:00
import {inspect} from 'util'
import {createClient} from '../../index.js'
import {profile as vsnProfile} from './index.js'
2020-02-06 16:25:21 +01:00
const client = createClient(vsnProfile, 'hafas-client-example')
2020-02-06 16:25:21 +01:00
2021-04-18 19:18:41 +02:00
client.journeys('9033961', '9033962', {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, {polyline: true})
2021-04-18 19:18:41 +02:00
// })
// .then(({journeys}) => {
// const [journey] = journeys
// return client.refreshJourney(journey.refreshToken, {stopovers: true, remarks: true})
// })
2020-02-06 16:25:21 +01:00
// client.departures('9033961', {duration: 1})
// client.arrivals('9033961', {duration: 10, linesOfStops: true})
2021-04-18 19:18:41 +02:00
// client.locations('jugendherberge', {results: 2})
2020-02-06 16:25:21 +01:00
// client.stop('9033961', {linesOfStops: true})
// client.nearby({
// type: 'location',
// latitude: 53.554422,
// longitude: 9.977934
// }, {distance: 60})
// client.radar({
// north: 53.55,
// west: 9.95,
// south: 52.51,
// east: 10
// }, {results: 10})
// client.reachableFrom({
// type: 'location',
// address: 'Hamburg, Holstenwall 9',
// latitude: 53.553766,
// longitude: 9.977514
// }, {
// when: new Date('2019-05-16T10:00:00+0200'),
// maxDuration: 8
// })
.then((data) => {
2022-05-07 16:17:37 +02:00
console.log(inspect(data, {depth: null, colors: true}))
2020-02-06 16:25:21 +01:00
})
.catch(console.error)