2018-04-09 19:49:18 +02:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const createClient = require('../..')
|
|
|
|
const mobiliteitProfile = require('.')
|
|
|
|
|
|
|
|
const client = createClient(mobiliteitProfile, 'hafas-client example')
|
|
|
|
|
2021-04-18 19:18:41 +02:00
|
|
|
const mersch = '160904011'
|
|
|
|
const luxembourgCentral = '200405060'
|
2018-04-09 19:49:18 +02:00
|
|
|
|
|
|
|
// from Mersch to Bruxelles Central
|
2021-04-18 19:18:41 +02:00
|
|
|
client.journeys(mersch, luxembourgCentral, {results: 1})
|
2018-04-09 19:49:18 +02:00
|
|
|
// .then(({journeys}) => {
|
2021-04-18 19:18:41 +02:00
|
|
|
// const [journey] = journeys
|
|
|
|
// const leg = journey.legs[0]
|
2021-12-29 21:33:42 +01:00
|
|
|
// return client.trip(leg.tripId, {polyline: true})
|
2021-04-18 19:18:41 +02:00
|
|
|
// })
|
|
|
|
// .then(({journeys}) => {
|
|
|
|
// const [journey] = journeys
|
|
|
|
// return client.refreshJourney(journey.refreshToken, {stopovers: true, remarks: true})
|
2018-04-09 19:49:18 +02:00
|
|
|
// })
|
|
|
|
|
|
|
|
// client.locations('mersch', {results: 3})
|
|
|
|
// client.stop(mersch)
|
|
|
|
// client.nearby({
|
|
|
|
// type: 'location',
|
|
|
|
// latitude: 49.7523,
|
|
|
|
// longitude: 6.1103
|
|
|
|
// }, {distance: 500})
|
|
|
|
|
|
|
|
// client.departures(mersch, {duration: 5})
|
|
|
|
// client.arrivals(mersch, {duration: 10, linesOfStops: true})
|
|
|
|
|
|
|
|
// client.radar({
|
|
|
|
// north: 49.9,
|
|
|
|
// west: 6.11,
|
|
|
|
// south: 49.7,
|
|
|
|
// east: 6.13
|
|
|
|
// }, {results: 10})
|
|
|
|
// client.reachableFrom({
|
|
|
|
// type: 'location',
|
|
|
|
// id: '990005227',
|
|
|
|
// address: 'Mersch, Rue Mies 1',
|
|
|
|
// latitude: 49.746044, longitude: 6.102228,
|
|
|
|
// }, {
|
|
|
|
// maxDuration: 30
|
|
|
|
// })
|
|
|
|
|
|
|
|
.then(data => {
|
|
|
|
console.log(require('util').inspect(data, {depth: null, colors: true}))
|
|
|
|
})
|
|
|
|
.catch(console.error)
|