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 salzburgProfile} from './index.js'
|
2021-08-05 20:07:28 +02: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(salzburgProfile, 'hafas-client example')
|
2021-08-05 20:07:28 +02:00
|
|
|
|
|
|
|
const salzburgGaswerkgasse = '455001300'
|
|
|
|
const oberndorfKrankenhaus = '455110200'
|
2023-07-28 21:35:56 +02:00
|
|
|
const salzburgRupertgasse5 = {
|
|
|
|
type: 'location',
|
|
|
|
id: '980100611',
|
|
|
|
address: 'Rupertgasse 5, 5020 Salzburg',
|
|
|
|
latitude: 47.806891,
|
|
|
|
longitude: 13.050503,
|
|
|
|
}
|
2021-08-05 20:07:28 +02:00
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
let data = await client.locations('krankenhaus', {results: 3})
|
|
|
|
// let data = await client.nearby(salzburgRupertgasse5, {distance: 1000})
|
|
|
|
// let data = await client.reachableFrom(salzburgRupertgasse5, {
|
|
|
|
// maxDuration: 30,
|
2021-08-05 20:07:28 +02:00
|
|
|
// })
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.stop(salzburgGaswerkgasse, {linesOfStops: true})
|
2021-08-05 20:07:28 +02:00
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.departures(salzburgGaswerkgasse, {duration: 1})
|
|
|
|
// let data = await client.arrivals(salzburgGaswerkgasse, {
|
|
|
|
// duration: 10,
|
|
|
|
// linesOfStops: true,
|
2021-08-05 20:07:28 +02:00
|
|
|
// })
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.journeys(salzburgGaswerkgasse, oberndorfKrankenhaus, {
|
|
|
|
// 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}))
|