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 kvbProfile} from './index.js'
|
2021-11-27 23:41:40 +01:00
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// Pick a descriptive user agent! hafas-client won't work with this string.
|
2022-11-22 21:08:08 +01:00
|
|
|
const client = createClient(kvbProfile, 'hafas-client example')
|
2021-11-27 23:41:40 +01:00
|
|
|
|
|
|
|
const heumarkt = '900000001'
|
|
|
|
const poststr = '900000003'
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
let data = await client.locations('heumarkt', {results: 3})
|
|
|
|
// let data = await client.nearby({
|
2021-11-27 23:41:40 +01:00
|
|
|
// type: 'location',
|
|
|
|
// id: '991023531',
|
|
|
|
// address: 'An den Dominikanern 27',
|
|
|
|
// latitude: 50.942454, longitude: 6.954064,
|
|
|
|
// }, {distance: 500})
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.reachableFrom({
|
2021-11-27 23:41:40 +01:00
|
|
|
// type: 'location',
|
|
|
|
// id: '991023531',
|
|
|
|
// address: 'An den Dominikanern 27',
|
|
|
|
// latitude: 50.942454, longitude: 6.954064,
|
|
|
|
// }, {
|
|
|
|
// maxDuration: 15,
|
|
|
|
// })
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.stop(heumarkt, {linesOfStops: true})
|
|
|
|
|
|
|
|
// let data = await client.departures(heumarkt, {duration: 1})
|
|
|
|
// let data = await client.arrivals(heumarkt, {duration: 10, linesOfStops: true})
|
|
|
|
|
|
|
|
// let data = await client.journeys(heumarkt, poststr, {
|
|
|
|
// results: 1, stopovers: true,
|
|
|
|
// })
|
|
|
|
// {
|
|
|
|
// const [journey] = data.journeys
|
|
|
|
// data = await client.refreshJourney(journey.refreshToken, {
|
|
|
|
// stopovers: true,
|
|
|
|
// remarks: true,
|
|
|
|
// })
|
|
|
|
// }
|
|
|
|
// {
|
|
|
|
// const [journey] = data.journeys
|
|
|
|
// const leg = journey.legs[0]
|
|
|
|
// data = await client.trip(leg.tripId, {polyline: true})
|
|
|
|
// }
|
|
|
|
|
|
|
|
console.log(inspect(data, {depth: null, colors: true}))
|