2022-05-07 16:17:37 +02:00
|
|
|
import {inspect} from 'util'
|
|
|
|
import {createClient} from '../../index.js'
|
2022-11-22 21:08:08 +01:00
|
|
|
import {profile as saarfahrplanProfile} from './index.js'
|
2018-12-28 15:52:29 +01:00
|
|
|
|
2022-11-22 21:08:08 +01:00
|
|
|
const client = createClient(saarfahrplanProfile, 'hafas-client-example')
|
2018-12-28 15:52:29 +01:00
|
|
|
|
|
|
|
client.journeys('15541', '10609', {results: 1})
|
2019-01-16 21:40:45 +08:00
|
|
|
// .then(({journeys}) => {
|
|
|
|
// const [journey] = journeys
|
2018-12-28 15:52:29 +01:00
|
|
|
// const leg = journey.legs[0]
|
|
|
|
// return client.trip(leg.id, leg.line.name, {polyline: true})
|
|
|
|
// })
|
2019-01-16 21:40:45 +08:00
|
|
|
// .then(({journeys}) => {
|
|
|
|
// const [journey] = journeys
|
2018-12-28 15:52:29 +01:00
|
|
|
// return client.refreshJourney(journey.refreshToken, {stopovers: true, remarks: true})
|
|
|
|
// })
|
|
|
|
|
|
|
|
// client.departures('15541', {duration: 1})
|
2019-01-23 13:03:01 +08:00
|
|
|
// client.arrivals('15541', {duration: 10, linesOfStops: true})
|
2018-12-28 15:52:29 +01:00
|
|
|
// client.locations('uhlandstr', {results: 2})
|
|
|
|
// client.station('10609') // Uhlandstr., Saarbrücken
|
|
|
|
// client.nearby({
|
|
|
|
// type: 'location',
|
|
|
|
// latitude: 49.229498,
|
|
|
|
// longitude: 7.008609
|
|
|
|
// }, {distance: 400})
|
|
|
|
// client.radar({
|
|
|
|
// north: 49.244044,
|
|
|
|
// west: 6.987644,
|
|
|
|
// south: 49.235332,
|
|
|
|
// east: 7.006480
|
|
|
|
// }, {results: 10})
|
|
|
|
// client.reachableFrom({
|
|
|
|
// type: 'location',
|
|
|
|
// id: '009000763',
|
|
|
|
// latitude: 49.235223,
|
|
|
|
// longitude: 6.996493,
|
|
|
|
// name: 'Saarbrücken, Rathaus'
|
|
|
|
// }, {maxDuration: 20})
|
|
|
|
|
|
|
|
.then((data) => {
|
2022-05-07 16:17:37 +02:00
|
|
|
console.log(inspect(data, {depth: null, colors: true}))
|
2018-12-28 15:52:29 +01:00
|
|
|
})
|
|
|
|
.catch(console.error)
|