CMTA: adapt example code to hafas-client@3 📝

This commit is contained in:
Jannis R 2018-08-24 19:25:57 +02:00 committed by Jannis Redmann
parent d0b0b56fbc
commit 6591d2be17
2 changed files with 16 additions and 8 deletions

View file

@ -3,23 +3,31 @@
const createClient = require('../..')
const cmtaProfile = require('.')
const client = createClient(cmtaProfile)
const client = createClient(cmtaProfile, 'hafas-client-example')
// Broadie Oaks to Domain
client.journeys('000002370', '000005919', {results: 1, polylines: true})
// client.departures('000002370', {duration: 1})
// client.arrivals('000002370', {duration: 10, stationLines: true})
// client.locations('Westgate', {results: 2})
// client.location('000005534') // Downtown light rail station
// client.station('000005534') // Downtown light rail station
// client.nearby({
// type: 'location',
// latitude: 30.266222,
// longtitude: -97.746058
// type: 'location',
// latitude: 30.266222,
// longtitude: -97.746058
// }, {distance: 60})
// client.radar(30.240877, -97.804588, 30.225378, -97.786692, {results: 10})
// client.radar({
// north: 30.240877,
// west: -97.804588,
// south: 30.225378,
// east: -97.786692
// }, {results: 10})
// .then(([journey]) => {
// const leg = journey.legs[0]
// return client.journeyLeg(leg.id, leg.line.name, {polyline: true})
// return client.trip(leg.id, leg.line.name, {polyline: true})
// })
.then((data) => {
console.log(require('util').inspect(data, {depth: null}))
})

View file

@ -9,7 +9,7 @@ const createClient = require('hafas-client')
const cmtaProfile = require('hafas-client/p/cmta')
// create a client with CMTA profile
const client = createClient(cmtaProfile)
const client = createClient(cmtaProfile, 'my-awesome-program')
```