db-vendo-client/p/cfl/example.js

53 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

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