mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
'use strict'
|
|
|
|
const createClient = require('../..')
|
|
const vvvProfile = require('.')
|
|
|
|
const client = createClient(vvvProfile, 'hafas-client example')
|
|
|
|
const linzTheatergasse = '444670100'
|
|
const amstettenStadtbad = '431507400'
|
|
|
|
// client.journeys(linzTheatergasse, amstettenStadtbad, {
|
|
// results: 1, stopovers: true,
|
|
// })
|
|
// .then(({journeys}) => {
|
|
// const [journey] = journeys
|
|
// return client.refreshJourney(journey.refreshToken, {stopovers: true, remarks: true})
|
|
// })
|
|
// .then(({journeys}) => {
|
|
// const [journey] = journeys
|
|
// const leg = journey.legs.find(l => !!l.line)
|
|
// return client.trip(leg.tripId, {polyline: true})
|
|
// })
|
|
|
|
client.departures(linzTheatergasse, {duration: 12 * 60})
|
|
// client.arrivals(linzTheatergasse, {duration: 10, linesOfStops: true})
|
|
|
|
// client.locations('theatergasse', {results: 3})
|
|
// client.stop(linzTheatergasse, {linesOfStops: true})
|
|
// client.nearby({
|
|
// type: 'location',
|
|
// id: '980115190',
|
|
// address: 'Steingasse 19, 4020 Linz',
|
|
// latitude: 48.301181,
|
|
// longitude: 14.284057,
|
|
// }, {distance: 1000})
|
|
// client.reachableFrom({
|
|
// type: 'location',
|
|
// id: '980115190',
|
|
// address: 'Steingasse 19, 4020 Linz',
|
|
// latitude: 48.301181,
|
|
// longitude: 14.284057,
|
|
// }, {
|
|
// maxDuration: 30,
|
|
// })
|
|
|
|
.then((data) => {
|
|
console.log(require('util').inspect(data, {depth: null, colors: true}))
|
|
})
|
|
.catch(console.error)
|