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 bartProfile} from './index.js'
|
2021-01-15 00:09:47 +01: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(bartProfile, 'hafas-client-example')
|
2021-01-15 00:09:47 +01:00
|
|
|
|
|
|
|
const fremont = '100013296'
|
|
|
|
const embarcadero = '100013295'
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
let data = await client.locations('embarcadero', {results: 3})
|
|
|
|
// let data = await client.nearby({
|
2021-01-15 00:09:47 +01:00
|
|
|
// type: 'location',
|
|
|
|
// latitude: 38.554779,
|
|
|
|
// longitude: -121.738798,
|
|
|
|
// }, {distance: 500})
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.reachableFrom({
|
2021-01-15 00:09:47 +01:00
|
|
|
// type: 'location',
|
|
|
|
// id: '980557173',
|
|
|
|
// address: '1000 Alice St, Davis, 95616',
|
|
|
|
// latitude: 38.554779,
|
|
|
|
// longitude: -121.738798,
|
|
|
|
// }, {
|
|
|
|
// maxDuration: 8,
|
|
|
|
// })
|
|
|
|
|
2023-07-28 21:35:56 +02:00
|
|
|
// let data = await client.stop(fremont, {linesOfStops: true})
|
|
|
|
|
|
|
|
// let data = await client.departures(fremont, {duration: 1})
|
|
|
|
// let data = await client.arrivals(fremont, {duration: 10, linesOfStops: true})
|
|
|
|
|
|
|
|
// let data = await client.journeys(fremont, embarcadero, {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[0]
|
|
|
|
// data = await client.trip(leg.tripId, {polyline: true})
|
|
|
|
// }
|
|
|
|
|
|
|
|
// let data = await client.radar({
|
|
|
|
// north: 37.8735,
|
|
|
|
// west: -122.5250,
|
|
|
|
// south: 37.6884,
|
|
|
|
// east: -122.2105,
|
|
|
|
// }, {results: 10})
|
|
|
|
|
|
|
|
console.log(inspect(data, {depth: null, colors: true}))
|