forked from public-transport/hafas-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.js
50 lines (43 loc) · 1.53 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {inspect} from 'util'
import {createClient} from '../../index.js'
import {profile as vorProfile} from './index.js'
// Pick a descriptive user agent! hafas-client won't work with this string.
const client = createClient(vorProfile, 'hafas-client example')
const stPöltenLinzerTor = '431277900'
const eisenstadtSchlossplatz = '415003300'
let data = await client.locations('schlossplatz', {results: 3})
// let data = await client.nearby({
// type: 'location',
// id: '980021284',
// address: 'Christalniggasse 6, 2500 Baden',
// latitude: 48.005516,
// longitude: 16.241404,
// }, {distance: 1000})
// let data = await client.reachableFrom({
// type: 'location',
// id: '980021284',
// address: 'Christalniggasse 6, 2500 Baden',
// latitude: 48.005516,
// longitude: 16.241404,
// }, {
// maxDuration: 30,
// })
// let data = await client.stop(stPöltenLinzerTor, {linesOfStops: true})
// let data = await client.departures(stPöltenLinzerTor, {duration: 20})
// let data = await client.arrivals(stPöltenLinzerTor, {duration: 10, linesOfStops: true})
// let data = await client.journeys(stPöltenLinzerTor, eisenstadtSchlossplatz, {
// 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.find(l => !!l.line)
// data = await client.trip(leg.tripId, {polyline: true})
// }
console.log(inspect(data, {depth: null, colors: true}))