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

57 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2022-05-07 16:17:37 +02:00
import {inspect} from 'util'
import {createClient} from '../../index.js'
import {profile as saarfahrplanProfile} from './index.js'
2018-12-28 15:52:29 +01:00
// Pick a descriptive user agent! hafas-client won't work with this string.
const client = createClient(saarfahrplanProfile, 'hafas-client-example')
2018-12-28 15:52:29 +01:00
const heusweilerKirschhof = '15541'
const saarbrückenUhlandstr = '10609'
2018-12-28 15:52:29 +01:00
let data = await client.locations('uhlandstr', {results: 2})
// let data = await client.nearby({
2018-12-28 15:52:29 +01:00
// type: 'location',
// latitude: 49.229498,
// longitude: 7.008609
// }, {distance: 400})
// let data = await client.reachableFrom({
2018-12-28 15:52:29 +01:00
// type: 'location',
// id: '009000763',
// latitude: 49.235223,
// longitude: 6.996493,
// name: 'Saarbrücken, Rathaus'
// }, {maxDuration: 20})
// let data = await client.stop(saarbrückenUhlandstr)
// let data = await client.departures(heusweilerKirschhof, {duration: 1})
// let data = await client.arrivals(heusweilerKirschhof, {
// duration: 10,
// linesOfStops: true,
// })
// let data = await client.journeys(heusweilerKirschhof, saarbrückenUhlandstr, {
// results: 1,
// })
// {
// 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.id, leg.line.name, {polyline: true})
// }
// let data = await client.radar({
// north: 49.244044,
// west: 6.987644,
// south: 49.235332,
// east: 7.006480
// }, {results: 10})
console.log(inspect(data, {depth: null, colors: true}))