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 mobiliteitluProfile} from './index.js'
|
2018-04-09 19:49:18 +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(mobiliteitluProfile, 'hafas-client example')
|
2018-04-09 19:49:18 +02:00
|
|
|
|
2021-04-18 19:18:41 +02:00
|
|
|
const mersch = '160904011'
|
|
|
|
const luxembourgCentral = '200405060'
|
2018-04-09 19:49:18 +02:00
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
let data = await client.locations('mersch', {results: 3})
|
|
|
|
// let data = await client.nearby({
|
2018-04-09 19:49:18 +02:00
|
|
|
// type: 'location',
|
|
|
|
// latitude: 49.7523,
|
|
|
|
// longitude: 6.1103
|
|
|
|
// }, {distance: 500})
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.reachableFrom({
|
2018-04-09 19:49:18 +02:00
|
|
|
// type: 'location',
|
|
|
|
// id: '990005227',
|
|
|
|
// address: 'Mersch, Rue Mies 1',
|
|
|
|
// latitude: 49.746044, longitude: 6.102228,
|
|
|
|
// }, {
|
|
|
|
// maxDuration: 30
|
|
|
|
// })
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.stop(mersch)
|
|
|
|
|
|
|
|
// let data = await client.departures(mersch, {duration: 5})
|
|
|
|
// let data = await client.arrivals(mersch, {duration: 10, linesOfStops: true})
|
|
|
|
|
|
|
|
// let data = await client.journeys(mersch, luxembourgCentral, {results: 1})
|
|
|
|
// {
|
|
|
|
// const [journey] = data.journeys
|
|
|
|
// const leg = journey.legs[0]
|
|
|
|
// data = await client.trip(leg.tripId, {polyline: true})
|
|
|
|
// }
|
|
|
|
// {
|
|
|
|
// const [journey] = data.journeys
|
|
|
|
// data = await client.refreshJourney(journey.refreshToken, {
|
|
|
|
// stopovers: true,
|
|
|
|
// remarks: true,
|
|
|
|
// })
|
|
|
|
// }
|
|
|
|
|
|
|
|
// let data = await client.radar({
|
|
|
|
// north: 49.9,
|
|
|
|
// west: 6.11,
|
|
|
|
// south: 49.7,
|
|
|
|
// east: 6.13
|
|
|
|
// }, {results: 10})
|
|
|
|
|
|
|
|
console.log(inspect(data, {depth: null, colors: true}))
|