trip: remove lineName parameter, update integration test fixtures 💥📝

This commit is contained in:
Jannis R 2021-12-29 21:33:42 +01:00
parent c53316668d
commit 30cb1f3d28
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5
219 changed files with 1823 additions and 255 deletions

View file

@ -1,4 +1,4 @@
# `trip(id, lineName, [opt])`
# `trip(id, [opt])`
This method can be used to refetch information about a trip  a vehicle stopping at a set of stops at specific times.
@ -16,7 +16,7 @@ const client = createClient(vbbProfile, 'my-awesome-program')
const {journeys} = client.journeys('900000003201', '900000100008', {results: 1})
const leg = journeys[0].legs[0]
await client.trip(leg.tripId, leg.line.name)
await client.trip(leg.tripId)
```
With `opt`, you can override the default options, which look like this:

View file

@ -1,13 +1,12 @@
'use strict'
const formatTripReq = ({opt}, id, lineName) => {
const formatTripReq = ({opt}, id) => {
return {
cfg: {polyEnc: 'GPA'},
meth: 'JourneyDetails',
req: {
// todo: getTrainComposition
jid: id,
name: lineName,
// HAFAS apparently ignores the date in the trip ID and uses the `date` field.
// Thus, it will find a different trip if you pass the wrong date via `opt.when`.
// date: profile.formatDate(profile, opt.when),

View file

@ -474,13 +474,10 @@ const createClient = (profile, userAgent, opt = {}) => {
: results
}
const trip = async (id, lineName, opt = {}) => {
const trip = async (id, opt = {}) => {
if (!isNonEmptyString(id)) {
throw new TypeError('id must be a non-empty string.')
}
if (!isNonEmptyString(lineName)) {
throw new TypeError('lineName must be a non-empty string.')
}
opt = Object.assign({
stopovers: true, // return stations on the way?
polyline: false, // return a track shape?
@ -490,7 +487,7 @@ const createClient = (profile, userAgent, opt = {}) => {
scheduledDays: false, // parse & expose dates trip is valid on?
}, opt)
const req = profile.formatTripReq({profile, opt}, id, lineName)
const req = profile.formatTripReq({profile, opt}, id)
const {res, common} = await profile.request({profile, opt}, userAgent, req)
const ctx = {profile, opt, common, res}

View file

@ -18,7 +18,7 @@ const kronenberg = '1397'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(rwth, {duration: 1})

View file

@ -18,7 +18,7 @@ const embarcadero = '100013295'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(fremont, {duration: 1})

View file

@ -18,7 +18,7 @@ client.journeys(bernDennigkofengässli, münsingenSpital, {results: 1, stopovers
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(bernDennigkofengässli, {duration: 1})

View file

@ -35,7 +35,7 @@ client.journeys('900000003201', '900000024101', {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -12,7 +12,7 @@ const bruxellesCentral = '8800003'
client.journeys(mersch, bruxellesCentral, {results: 1})
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -35,7 +35,7 @@ client.journeys('000002370', '000005919', {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -18,7 +18,7 @@ const se5thStEHackleyAveDsm2294 = '100004972'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs.find(l => !!l.line)
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(mlkJrPkwyAdamsAveDsm2055, {duration: 10})

View file

@ -10,7 +10,7 @@ const client = createClient(dbbusradarnrwProfile, 'hafas-client-example')
client.journeys('3307002', '3357026', {results: 1})
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -9,7 +9,7 @@ const client = createClient(dbProfile, 'hafas-client-example')
client.journeys('8011167', '8000261', {results: 1, tickets: true})
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -34,7 +34,7 @@ client.locations('dammtor', {results: 2})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -12,7 +12,7 @@ client.journeys(ingolstadtHbf, audiParkplatz, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -10,7 +10,7 @@ client.journeys('9909002', '9990840', {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures('9909002', {duration: 5})

View file

@ -18,7 +18,7 @@ const völsWest = '476431800'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(innsbruckGriesauweg, {duration: 1})

View file

@ -18,7 +18,7 @@ const poststr = '900000003'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(heumarkt, {duration: 1})

View file

@ -13,7 +13,7 @@ client.journeys(soest, aachenHbf, {results: 1, stopovers: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -13,7 +13,7 @@ client.journeys(mersch, luxembourgCentral, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -10,7 +10,7 @@ client.journeys('8000103', '8000199', {results: 10, tickets: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -10,7 +10,7 @@ client.journeys('2200073', '2200042', {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs.find(l => !!l.line)
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -18,7 +18,7 @@ const amstettenStadtbad = '431507400'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs.find(l => !!l.line)
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
client.departures(linzTheatergasse, {duration: 12 * 60})

View file

@ -37,7 +37,7 @@ client.journeys(krakówGł, wrocławGł, {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
.then((data) => {

View file

@ -34,7 +34,7 @@ client.journeys(marburgHbf, mainzGonsenheim, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -24,7 +24,7 @@ client.journeys(rostockHbf, güstrow, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(rostockHbf, {duration: 1})

View file

@ -18,7 +18,7 @@ const oberndorfKrankenhaus = '455110200'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(salzburgGaswerkgasse, {duration: 1})

View file

@ -35,7 +35,7 @@ client.departures('8004154', {duration: 5})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs.find(leg => leg.line)
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -18,7 +18,7 @@ const locBaden = { type: 'location', latitude: 47.476, longitude: 8.30613 }
client.journeys(baden1, baden2, { results: 1 })
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// return client.refreshJourney(journeys[0].refreshToken, {remarks: true})

View file

@ -16,7 +16,7 @@ const gentPaddenhoek = {
client.journeys(gentStPieters, bruxellesMidi, {stopovers: true, remarks: true})
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// return client.refreshJourney(journeys[0].refreshToken, {remarks: true})

View file

@ -18,7 +18,7 @@ const grazHödlweg = '460415400'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(grazSonnenhang, {duration: 1})

View file

@ -18,7 +18,7 @@ client.journeys(sam, volksgarten, {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -18,7 +18,7 @@ client.journeys(miremont, moillebeau, {results: 1, stopovers: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(miremont, {duration: 1})

View file

@ -35,7 +35,7 @@ client.locations('hansaplatz', {results: 2})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -24,7 +24,7 @@ client.journeys(bremerhavenHbf, verden, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(bremerhavenHbf, {duration: 1})

View file

@ -18,7 +18,7 @@ const klagenfurtSteingasse = '420649500'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(spittalMittelschule, {duration: 1})

View file

@ -30,7 +30,7 @@ client.journeys(jena, gothaZOB, {results: 1})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -18,7 +18,7 @@ const eisenstadtSchlossplatz = '415003300'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs.find(l => !!l.line)
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(stPöltenLinzerTor, {duration: 20})

View file

@ -18,7 +18,7 @@ const finkenweg = '9071574'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(saarplatz, {duration: 1})

View file

@ -11,7 +11,7 @@ const meckesheim = '8003932'
client.journeys(ludwigshafen, meckesheim, {results: 1, polylines: true})
// .then(({journeys}) => {
// const leg = journeys[0].legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {
// const [journey] = journeys

View file

@ -10,7 +10,7 @@ client.journeys('9033961', '9033962', {results: 1, polylines: true})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -18,7 +18,7 @@ const kufsteinListstr = '476603100'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
client.departures(innsbruckMitterweg, {duration: 1})

View file

@ -18,7 +18,7 @@ const bludenzGymnasium = '480031300'
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// client.departures(bregenzLandeskrankenhaus, {duration: 1})

View file

@ -19,7 +19,7 @@ client.locations('bürkli', {results: 2})
// .then(({journeys}) => {
// const [journey] = journeys
// const leg = journey.legs[0]
// return client.trip(leg.tripId, leg.line.name, {polyline: true})
// return client.trip(leg.tripId, {polyline: true})
// })
// .then(({journeys}) => {

View file

@ -228,7 +228,7 @@ tap.test('trip details', async (t) => {
t.ok(p.tripId, 'precondition failed')
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
const tripRes = await client.trip(p.tripId, {when})
validate(t, tripRes, 'tripResult', 'res')
t.end()

View file

@ -177,7 +177,7 @@ tap.test('trip', async (t) => {
t.ok(p.tripId, 'precondition failed')
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
const tripRes = await client.trip(p.tripId, {when})
validate(t, tripRes, 'tripResult', 'res')
t.end()

View file

@ -156,7 +156,7 @@ tap.test('trip details', async (t) => {
t.ok(p.tripId, 'precondition failed')
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
const tripRes = await client.trip(p.tripId, {when})
validate(t, tripRes, 'tripResult', 'res')
t.end()

View file

@ -56,7 +56,7 @@ tap.test('trip details', async (t) => {
t.ok(p.tripId, 'precondition failed')
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
const tripRes = await client.trip(p.tripId, {when})
validate(t, tripRes, 'tripResult', 'res')
t.end()

View file

@ -250,7 +250,7 @@ tap.skip('journeysFromTrip U Mehringdamm to U Naturkundemuseum, reroute to S
for (const j of journeys) {
const l = j.legs.find(isU6Leg)
if (!l) continue
const t = await client.trip(l.tripId, l.line && l.line.name, {
const t = await client.trip(l.tripId, {
stopovers: true, remarks: false
})
@ -311,7 +311,7 @@ tap.test('trip details', async (t) => {
t.ok(p.tripId, 'precondition failed')
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
const tripRes = await client.trip(p.tripId, {when})
const validate = createValidate(cfg, {
trip: (cfg) => {

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,36 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:28:53 GMT",
"server": "Apache",
"content-length": "3079",
"keep-alive": "timeout=5, max=99",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://s-bahn-muenchen.hafas.de/bin/540/mgate.exe?mic=9fecfce6d31aa9537c0c36fefd63ba92&mac=a3e48baeac5814e5d9c9e00e975eedf2",
"time": 751,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"publi51526ac-trans51526aport/hafas51526a-clie51526ant:test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"299"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:55:18 GMT",
"date": "Tue, 03 May 2022 15:28:53 GMT",
"server": "Apache",
"content-length": "7332",
"keep-alive": "timeout=5, max=52",
"keep-alive": "timeout=5, max=39",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8",
"strict-transport-security": "max-age=63072000; includeSubDomains"
},
"url": "https://fahrplan.oebb.at/bin/mgate.exe",
"time": 914,
"time": 36096,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-tr11cf88ansport/ha11cf88fas-clie11cf88nt:test"
"publicd14604-transpod14604rt/hafas-d14604client:tesd14604t"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:06:27 GMT",
"date": "Tue, 03 May 2022 15:24:27 GMT",
"server": "Apache",
"vary": "User-Agent",
"content-length": "2369",
"content-length": "2359",
"access-control-allow-origin": "*",
"access-control-allow-headers": "*",
"content-type": "application/json; charset=utf-8"
},
"url": "https://bvg-apps-ext.hafas.de/bin/mgate.exe",
"time": 255,
"time": 35475,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public171367-transpor171367t/haf171367as-cli171367ent:tes171367t"
"public92b9d3-transpo92b9d3rt/ha92b9d3fas-cl92b9d3ient:te92b9d3st"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,40 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:32 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "2964",
"connection": "keep-alive",
"set-cookie": [
"AWSALB=aUlyQxYRbWAyf6DEARoeEojd3l/4SWl7BD2k83lfPky02XwZ0NDN/uPofMaqCg9Lic0MMCUNYUAEstjjoYMjZE7fLNOc+tSFBEXGKH5aQr1/x7Og9oSJ2JIYjvuT; Expires=Tue, 10 May 2022 15:24:32 GMT; Path=/",
"AWSALBCORS=aUlyQxYRbWAyf6DEARoeEojd3l/4SWl7BD2k83lfPky02XwZ0NDN/uPofMaqCg9Lic0MMCUNYUAEstjjoYMjZE7fLNOc+tSFBEXGKH5aQr1/x7Og9oSJ2JIYjvuT; Expires=Tue, 10 May 2022 15:24:32 GMT; Path=/; SameSite=None; Secure"
],
"server": "Apache",
"strict-transport-security": "max-age=16070400; includeSubDomains"
},
"url": "https://reiseauskunft.bahn.de/bin/mgate.exe?checksum=d53eca28f971a34b5af1af78239b494f",
"time": 196,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-td7256franspd7256fort/hafad7256fs-cliend7256ft:test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"301"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:28:57 GMT",
"server": "Apache",
"content-length": "2436",
"keep-alive": "timeout=5, max=57",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8",
"strict-transport-security": "max-age=63072000; includeSubDomains"
},
"url": "https://fahrplan.oebb.at/bin/mgate.exe",
"time": 136,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"publicd14604-transpd14604ort/hafas-d14604client:td14604est"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"407"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:06:31 GMT",
"date": "Tue, 03 May 2022 15:24:28 GMT",
"server": "Apache",
"vary": "User-Agent",
"content-length": "1905",
"content-length": "1896",
"access-control-allow-origin": "*",
"access-control-allow-headers": "*",
"content-type": "application/json; charset=utf-8"
},
"url": "https://bvg-apps-ext.hafas.de/bin/mgate.exe",
"time": 238,
"time": 210,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-171367trans171367port/haf171367as-client:171367test"
"public-tr92b9d3anspor92b9d3t/hafas-92b9d3client:te92b9d3st"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -1,13 +1,13 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:19:54 GMT",
"date": "Tue, 03 May 2022 15:24:34 GMT",
"server": "Apache",
"content-length": "3682",
"content-length": "3681",
"content-type": "application/json; charset=utf-8"
},
"url": "https://cdt.hafas.de/bin/mgate.exe",
"time": 432,
"time": 525,
"request": {
"method": "POST",
"headers": {
@ -21,7 +21,7 @@
"application/json"
],
"user-agent": [
"public-f5d17ftransporf5d17ft/hafaf5d17fs-clientf5d17f:test"
"public-tr853138ansport/h853138afas-c853138lient:t853138est"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,34 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:34 GMT",
"server": "Apache",
"content-length": "2437",
"content-type": "application/json; charset=utf-8"
},
"url": "https://nrw.hafas.de/bin/mgate.exe",
"time": 227,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public2e7ca4-transpo2e7ca4rt/hafas2e7ca4-client:te2e7ca4st"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"265"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:33 GMT",
"server": "Apache/2.4.25 (Debian)",
"content-length": "2976",
"access-control-allow-origin": "*",
"keep-alive": "timeout=5, max=97",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://reiseauskunft.insa.de/bin/mgate.exe",
"time": 128,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-d016actranspord016act/hafd016acas-cliend016act:test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"253"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,15 +1,15 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:58:03 GMT",
"date": "Tue, 03 May 2022 15:28:52 GMT",
"server": "Apache",
"content-length": "4297",
"keep-alive": "timeout=5, max=92",
"content-length": "4295",
"keep-alive": "timeout=5, max=100",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://s-bahn-muenchen.hafas.de/bin/540/mgate.exe?mic=349024572bbe41a165d74bc9585f0778&mac=eae1b5c529d08dcd519ec5b59c9fcc48",
"time": 590,
"time": 926,
"request": {
"method": "POST",
"headers": {
@ -23,7 +23,7 @@
"application/json"
],
"user-agent": [
"public-t66f0fbranspo66f0fbrt/hafas66f0fb-client:t66f0fbest"
"public51526a-transport51526a/hafas-51526aclient:t51526aest"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -1,19 +1,19 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:51:59 GMT",
"date": "Tue, 03 May 2022 15:24:32 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "2156",
"content-length": "2160",
"connection": "keep-alive",
"set-cookie": [
"AWSALB=w1V9Fz/PKLjuowlFPsjDZgA51iI9khZM1KTx6j9MnGFKjeFUwMdhnnoaR3taKUfden10SeRNDjuXPD5E8jAwV+FCtYQ2FCTnReb2p29bAhNUEqLjbK8PENkDeQ0O; Expires=Tue, 10 May 2022 14:51:59 GMT; Path=/",
"AWSALBCORS=w1V9Fz/PKLjuowlFPsjDZgA51iI9khZM1KTx6j9MnGFKjeFUwMdhnnoaR3taKUfden10SeRNDjuXPD5E8jAwV+FCtYQ2FCTnReb2p29bAhNUEqLjbK8PENkDeQ0O; Expires=Tue, 10 May 2022 14:51:59 GMT; Path=/; SameSite=None; Secure"
"AWSALB=IuJ8YLKuTwwxjcnKXEXoEyShPPlPYbEB4gKLYmFleIArhecHm9bUlpH5/H8BYBL/knxwTO9MnTYoiBzmZ5Ew+27PtBdNXz0sZGn3OSeLol9H4+D0jttb4hk1A0cG; Expires=Tue, 10 May 2022 15:24:31 GMT; Path=/",
"AWSALBCORS=IuJ8YLKuTwwxjcnKXEXoEyShPPlPYbEB4gKLYmFleIArhecHm9bUlpH5/H8BYBL/knxwTO9MnTYoiBzmZ5Ew+27PtBdNXz0sZGn3OSeLol9H4+D0jttb4hk1A0cG; Expires=Tue, 10 May 2022 15:24:31 GMT; Path=/; SameSite=None; Secure"
],
"server": "Apache",
"strict-transport-security": "max-age=16070400; includeSubDomains"
},
"url": "https://reiseauskunft.bahn.de/bin/mgate.exe?checksum=fa8ecd0c3cf4829214d6fe60a30d117f",
"time": 175,
"time": 635,
"request": {
"method": "POST",
"headers": {
@ -27,7 +27,7 @@
"application/json"
],
"user-agent": [
"public-98758dtrans98758dport/hafa98758ds-client98758d:test"
"public-td7256franspod7256frt/hafd7256fas-clientd7256f:test"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,36 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:30:26 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "3142",
"connection": "keep-alive",
"server": "Apache/2.4.25 (Debian)",
"access-control-allow-origin": "*"
},
"url": "https://auskunft.nvv.de/auskunft/bin/app/mgate.exe",
"time": 193,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-tr2f8015anspor2f8015t/hafas-c2f8015lient:tes2f8015t"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"289"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,39 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:27:20 GMT",
"server": "Apache",
"access-control-allow-headers": "*",
"access-control-allow-methods": "GET,POST,OPTIONS",
"access-control-allow-origin": "*",
"content-length": "2976",
"keep-alive": "timeout=5, max=98",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://fahrplan.salzburg-verkehr.at/bin/mgate.exe",
"time": 536,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public2a79c1-transpor2a79c1t/hafas2a79c1-client:t2a79c1est"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"412"
]
}
}
}

View file

@ -1 +1 @@
{"ver":"1.44","lang":"deu","id":"k544wkqswg4xgmwg","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Magdeburg, Universität@X=11639745@Y=52139808@U=80@L=19686@i=A×de:15003:19686@","type":"S","name":"Magdeburg, Universität","icoX":0,"extId":"19686","state":"F","crd":{"x":11639745,"y":52139808,"floor":0},"pCls":32,"pRefL":[1,2,3,4,5,6,7,8,9,10,11,12,13],"gidL":["A×de:15003:19686"],"chgTime":"000300"},{"lid":"A=1@O=Magdeburg, Sudenburg, Kroatenweg@X=11591177@Y=52106935@U=80@L=7308@i=A×de:15003:7308@","type":"S","name":"Magdeburg, Sudenburg, Kroatenweg","icoX":0,"extId":"7308","state":"F","crd":{"x":11591177,"y":52106935,"floor":0},"pCls":32,"gidL":["A×de:15003:7308"],"chgTime":"000300"}],"prodL":[{"pid":"L::5::Str::B1759993135::5_MBT____1::*","name":"Str 1","nameS":"1","number":"1","icoX":0,"cls":32,"oprX":0,"prodCtx":{"name":"Str 1","num":"1597","line":"1","lineId":"5_MBT____1","matchId":"1","catOut":"Str ","catOutS":"StH","catOutL":"Str ","catIn":"StH","catCode":"5","admin":"MBT___"}},{"name":"Str 1","nameS":"1","icoX":0,"cls":32,"prodCtx":{"name":"Str 1","line":"1","lineId":"5_MBT____1","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 2","nameS":"2","icoX":0,"cls":32,"prodCtx":{"name":"Str 2","line":"2","lineId":"5_MBT____2","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 3","nameS":"3","icoX":0,"cls":32,"prodCtx":{"name":"Str 3","line":"3","lineId":"5_MBT____3","catOut":"Str ","catOutS":"StH","catOutL":"Str "}},{"name":"Str 4","nameS":"4","icoX":0,"cls":32,"prodCtx":{"name":"Str 4","line":"4","lineId":"5_MBT____4","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 5","nameS":"5","icoX":0,"cls":32,"prodCtx":{"name":"Str 5","line":"5","lineId":"5_MBT____5","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 6","nameS":"6","icoX":0,"cls":32,"prodCtx":{"name":"Str 6","line":"6","lineId":"5_MBT____6","catOut":"Str ","catOutS":"StH","catOutL":"Str "}},{"name":"Str 8","nameS":"8","icoX":0,"cls":32,"prodCtx":{"name":"Str 8","line":"8","lineId":"5_MBT____8","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 9","nameS":"9","icoX":0,"cls":32,"prodCtx":{"name":"Str 9","line":"9","lineId":"5_MBT____9","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 10","nameS":"10","icoX":0,"cls":32,"prodCtx":{"name":"Str 10","line":"10","lineId":"5_MBT____10","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 13","nameS":"13","icoX":0,"cls":32,"prodCtx":{"name":"Str 13","line":"13","lineId":"5_MBT____13","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 15","nameS":"15","icoX":0,"cls":32,"prodCtx":{"name":"Str 15","line":"15","lineId":"5_MBT____15","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str N5","nameS":"N5","icoX":0,"cls":32,"prodCtx":{"name":"Str N5","line":"N5","lineId":"5_MBT____N5","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str N8","nameS":"N8","icoX":0,"cls":32,"prodCtx":{"name":"Str N8","line":"N8","lineId":"5_MBT____N8","catOut":"Str ","catOutS":"StN","catOutL":"Str "}}],"opL":[{"name":"Magdeburger Verkehrsbetriebe","icoX":1,"id":"36"}],"remL":[{"type":"A","code":"OPERATOR","icoX":2,"txtS":"MVB","txtN":"MVB","txtL":"Magdeburger Verkehrsbetriebe"},{"type":"A","code":"ac","prio":10,"icoX":2,"txtN":"Fahrzeug ohne niederflurigen Einstieg geplant"}],"icoL":[{"res":"prod_tram","fg":{"r":255,"g":255,"b":255},"bg":{"r":226,"g":16,"b":29}},{"res":"MVB","txt":"Magdeburger Verkehrsbetriebe"},{"res":"attr_info"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":226,"g":16,"b":29}},{"type":"SOLID","bg":{"r":226,"g":16,"b":29}}],"timeStyleL":[{"mode":"ABS"},{"mode":"CNT"}]},"type":"DEP","jnyL":[{"jid":"1|2142|2|80|16052022","date":"20220516","prodX":0,"dirTxt":"Sudenburg","dirFlg":"2","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":12,"dProdX":0,"dTimeS":"100400","dTimeFS":{"styleX":0},"dTimeFC":{"styleX":1},"type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":818413568},{"type":"REM","remX":1,"sty":"I","dspl":"U","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL_H3","RES_JNY_DTL_H2"],"sort":672399360}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":1,"fIdx":12,"tIdx":30}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220516"}],"fpB":"20220426","fpE":"20230503","planrtTS":"1651589503","sD":"20220503","sT":"165152","locRefL":[0]}}]}
{"ver":"1.44","lang":"deu","id":"k4wg8kuuwgs894wx","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Magdeburg, Universität@X=11639745@Y=52139808@U=80@L=19686@i=A×de:15003:19686@","type":"S","name":"Magdeburg, Universität","icoX":0,"extId":"19686","state":"F","crd":{"x":11639745,"y":52139808,"floor":0},"pCls":32,"pRefL":[1,2,3,4,5,6,7,8,9,10,11,12,13],"gidL":["A×de:15003:19686"],"chgTime":"000300"},{"lid":"A=1@O=Magdeburg, Sudenburg, Kroatenweg@X=11591177@Y=52106935@U=80@L=7308@i=A×de:15003:7308@","type":"S","name":"Magdeburg, Sudenburg, Kroatenweg","icoX":0,"extId":"7308","state":"F","crd":{"x":11591177,"y":52106935,"floor":0},"pCls":32,"gidL":["A×de:15003:7308"],"chgTime":"000300"}],"prodL":[{"pid":"L::5::Str::B1759993135::5_MBT____1::*","name":"Str 1","nameS":"1","number":"1","icoX":0,"cls":32,"oprX":0,"prodCtx":{"name":"Str 1","num":"1597","line":"1","lineId":"5_MBT____1","matchId":"1","catOut":"Str ","catOutS":"StH","catOutL":"Str ","catIn":"StH","catCode":"5","admin":"MBT___"}},{"name":"Str 1","nameS":"1","icoX":0,"cls":32,"prodCtx":{"name":"Str 1","line":"1","lineId":"5_MBT____1","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 2","nameS":"2","icoX":0,"cls":32,"prodCtx":{"name":"Str 2","line":"2","lineId":"5_MBT____2","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 3","nameS":"3","icoX":0,"cls":32,"prodCtx":{"name":"Str 3","line":"3","lineId":"5_MBT____3","catOut":"Str ","catOutS":"StH","catOutL":"Str "}},{"name":"Str 4","nameS":"4","icoX":0,"cls":32,"prodCtx":{"name":"Str 4","line":"4","lineId":"5_MBT____4","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 5","nameS":"5","icoX":0,"cls":32,"prodCtx":{"name":"Str 5","line":"5","lineId":"5_MBT____5","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 6","nameS":"6","icoX":0,"cls":32,"prodCtx":{"name":"Str 6","line":"6","lineId":"5_MBT____6","catOut":"Str ","catOutS":"StH","catOutL":"Str "}},{"name":"Str 8","nameS":"8","icoX":0,"cls":32,"prodCtx":{"name":"Str 8","line":"8","lineId":"5_MBT____8","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 9","nameS":"9","icoX":0,"cls":32,"prodCtx":{"name":"Str 9","line":"9","lineId":"5_MBT____9","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 10","nameS":"10","icoX":0,"cls":32,"prodCtx":{"name":"Str 10","line":"10","lineId":"5_MBT____10","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 13","nameS":"13","icoX":0,"cls":32,"prodCtx":{"name":"Str 13","line":"13","lineId":"5_MBT____13","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str 15","nameS":"15","icoX":0,"cls":32,"prodCtx":{"name":"Str 15","line":"15","lineId":"5_MBT____15","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str N5","nameS":"N5","icoX":0,"cls":32,"prodCtx":{"name":"Str N5","line":"N5","lineId":"5_MBT____N5","catOut":"Str ","catOutS":"StN","catOutL":"Str "}},{"name":"Str N8","nameS":"N8","icoX":0,"cls":32,"prodCtx":{"name":"Str N8","line":"N8","lineId":"5_MBT____N8","catOut":"Str ","catOutS":"StN","catOutL":"Str "}}],"opL":[{"name":"Magdeburger Verkehrsbetriebe","icoX":1,"id":"36"}],"remL":[{"type":"A","code":"OPERATOR","icoX":2,"txtS":"MVB","txtN":"MVB","txtL":"Magdeburger Verkehrsbetriebe"},{"type":"A","code":"ac","prio":10,"icoX":2,"txtN":"Fahrzeug ohne niederflurigen Einstieg geplant"}],"icoL":[{"res":"prod_tram","fg":{"r":255,"g":255,"b":255},"bg":{"r":226,"g":16,"b":29}},{"res":"MVB","txt":"Magdeburger Verkehrsbetriebe"},{"res":"attr_info"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":226,"g":16,"b":29}},{"type":"SOLID","bg":{"r":226,"g":16,"b":29}}],"timeStyleL":[{"mode":"ABS"},{"mode":"CNT"}]},"type":"DEP","jnyL":[{"jid":"1|2142|2|80|16052022","date":"20220516","prodX":0,"dirTxt":"Sudenburg","dirFlg":"2","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":12,"dProdX":0,"dTimeS":"100400","dTimeFS":{"styleX":0},"dTimeFC":{"styleX":1},"type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":818413568},{"type":"REM","remX":1,"sty":"I","dspl":"U","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL_H3","RES_JNY_DTL_H2"],"sort":672399360}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":1,"fIdx":12,"tIdx":30}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220516"}],"fpB":"20220426","fpE":"20230503","planrtTS":"1651591453","sD":"20220503","sT":"172433","locRefL":[0]}}]}

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:51:52 GMT",
"date": "Tue, 03 May 2022 15:24:33 GMT",
"server": "Apache/2.4.25 (Debian)",
"content-length": "1327",
"content-length": "1331",
"access-control-allow-origin": "*",
"keep-alive": "timeout=5, max=90",
"keep-alive": "timeout=5, max=98",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://reiseauskunft.insa.de/bin/mgate.exe",
"time": 105,
"time": 122,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-t780ef5ransport780ef5/hafas780ef5-client:780ef5test"
"publicd016ac-transd016acport/d016achafas-d016acclientd016ac:test"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,34 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:27:23 GMT",
"server": "Apache",
"content-length": "2790",
"content-type": "application/json; charset=utf-8"
},
"url": "https://vrn.hafas.de/bin/mgate.exe",
"time": 539,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-traf2cb61nsport/hf2cb61afas-clf2cb61ient:tesf2cb61t"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"285"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:25:51 GMT",
"server": "Apache",
"content-length": "3511",
"content-type": "application/json; charset=utf-8",
"set-cookie": [
"HAFAS-PROD-MOBIL-CL-SSL=HAFAS-PROD-MOBIL-01; path=/"
]
},
"url": "https://mobil.rozklad-pkp.pl:8019/bin/mgate.exe",
"time": 229,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-t13f943ranspor13f943t/haf13f943as-client:13f943test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"231"
]
}
}
}

View file

@ -1 +1 @@
{"ver":"1.30","lang":"deu","id":"mugsgmq6wk48xmwg","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Kiel Ellerbeker Markt@X=10170414@Y=54323630@U=100@L=9910394@","type":"S","name":"Kiel Ellerbeker Markt","icoX":0,"extId":"9910394","state":"F","crd":{"x":10170414,"y":54323630,"floor":0},"pCls":32,"pRefL":[1,2,3,4,5,6,7,8,9,10,11],"entry":true,"mMastLocX":1,"gidL":["A×de:01002:49027::2"]},{"lid":"A=1@O=Kiel Ellerbeker Markt@X=10169703@Y=54323450@U=100@L=9049027@","type":"S","name":"Kiel Ellerbeker Markt","icoX":2,"extId":"9049027","state":"F","crd":{"x":10169703,"y":54323450,"floor":0},"meta":true,"pCls":32,"isMainMast":true,"gidL":["A×de:01002:49027"]},{"lid":"A=1@O=Kiel Pillauer Straße@X=10196743@Y=54337275@U=100@L=9911149@","type":"S","name":"Kiel Pillauer Straße","icoX":0,"extId":"9911149","state":"F","crd":{"x":10196743,"y":54337275,"floor":0},"pCls":32,"entry":true,"mMastLocX":3,"gidL":["A×de:01002:49186::2"]},{"lid":"A=1@O=Kiel Pillauer Straße@X=10196581@Y=54337410@U=100@L=9049186@","type":"S","name":"Kiel Pillauer Straße","icoX":2,"extId":"9049186","state":"F","crd":{"x":10196581,"y":54337410,"floor":0},"meta":true,"pCls":32,"isMainMast":true,"gidL":["A×de:01002:49186"]}],"prodL":[{"pid":"L::5::Bus::B1915477739::Bus_1915477739_11::*","name":"Bus 11","number":"11","icoX":0,"cls":32,"oprX":0,"prodCtx":{"name":"Bus 11","num":"6035","line":"11","matchId":"11","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus","catIn":"GB_","catCode":"5","admin":"KVGK__"}},{"name":"Bus 2","icoX":0,"cls":32,"prodCtx":{"name":"Bus 2","lineId":"2","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 9","icoX":0,"cls":32,"prodCtx":{"name":"Bus 9","lineId":"9","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 11","icoX":0,"cls":32,"prodCtx":{"name":"Bus 11","lineId":"11","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 11N","icoX":0,"cls":32,"prodCtx":{"name":"Bus 11N","lineId":"11N","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 14","icoX":0,"cls":32,"prodCtx":{"name":"Bus 14","lineId":"14","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 14N","icoX":0,"cls":32,"prodCtx":{"name":"Bus 14N","lineId":"14N","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 15","icoX":0,"cls":32,"prodCtx":{"name":"Bus 15","lineId":"15","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 72","icoX":0,"cls":32,"prodCtx":{"name":"Bus 72","lineId":"72","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 200","icoX":0,"cls":32,"prodCtx":{"name":"Bus 200","lineId":"200","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}},{"name":"Bus 201","icoX":0,"cls":32,"prodCtx":{"name":"Bus 201","lineId":"201","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}},{"name":"Bus 210","icoX":0,"cls":32,"prodCtx":{"name":"Bus 210","lineId":"210","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}}],"opL":[{"name":"Kieler Verkehrsgesellschaft mbH","icoX":1,"id":"601"}],"remL":[{"type":"A","code":"eb","prio":899,"icoX":3,"txtN":"Linie der KVG Kieler Verkehrsgesellschaft mbH, Info: <a href=\"tel:043122032203\">0431 2203-2203</a>"}],"icoL":[{"res":"PROD_BUS","fg":{"r":255,"g":255,"b":255},"bg":{"r":255,"g":120,"b":0}},{"res":"KIE","txt":"Kieler Verkehrsgesellschaft mbH"},{"res":"STA"},{"res":"INFO"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":255,"g":120,"b":0}},{"type":"SOLID","bg":{"r":255,"g":120,"b":0}}]},"type":"DEP","jnyL":[{"jid":"1|53923|3|100|18072022","date":"20220718","prodX":0,"dirTxt":"Kiel Pillauer Straße","dirFlg":"1","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":25,"dProdX":0,"dTimeS":"100800","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":2,"tagL":["RES_JNY_DTL"],"sort":923140096}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":2,"fIdx":25,"tIdx":33}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"}],"fpB":"20220303","fpE":"20221227","planrtTS":"1651590455","sD":"20220503","sT":"170800","locRefL":[0]}}]}
{"ver":"1.30","lang":"deu","id":"2jggwkam2ksc9mwx","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Kiel Ellerbeker Markt@X=10170414@Y=54323630@U=100@L=9910394@","type":"S","name":"Kiel Ellerbeker Markt","icoX":0,"extId":"9910394","state":"F","crd":{"x":10170414,"y":54323630,"floor":0},"pCls":32,"pRefL":[1,2,3,4,5,6,7,8,9,10,11],"entry":true,"mMastLocX":1,"gidL":["A×de:01002:49027::2"]},{"lid":"A=1@O=Kiel Ellerbeker Markt@X=10169703@Y=54323450@U=100@L=9049027@","type":"S","name":"Kiel Ellerbeker Markt","icoX":2,"extId":"9049027","state":"F","crd":{"x":10169703,"y":54323450,"floor":0},"meta":true,"pCls":32,"isMainMast":true,"gidL":["A×de:01002:49027"]},{"lid":"A=1@O=Kiel Pillauer Straße@X=10196743@Y=54337275@U=100@L=9911149@","type":"S","name":"Kiel Pillauer Straße","icoX":0,"extId":"9911149","state":"F","crd":{"x":10196743,"y":54337275,"floor":0},"pCls":32,"entry":true,"mMastLocX":3,"gidL":["A×de:01002:49186::2"]},{"lid":"A=1@O=Kiel Pillauer Straße@X=10196581@Y=54337410@U=100@L=9049186@","type":"S","name":"Kiel Pillauer Straße","icoX":2,"extId":"9049186","state":"F","crd":{"x":10196581,"y":54337410,"floor":0},"meta":true,"pCls":32,"isMainMast":true,"gidL":["A×de:01002:49186"]}],"prodL":[{"pid":"L::5::Bus::B1915477739::Bus_1915477739_11::*","name":"Bus 11","number":"11","icoX":0,"cls":32,"oprX":0,"prodCtx":{"name":"Bus 11","num":"6035","line":"11","matchId":"11","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus","catIn":"GB_","catCode":"5","admin":"KVGK__"}},{"name":"Bus 2","icoX":0,"cls":32,"prodCtx":{"name":"Bus 2","lineId":"2","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 9","icoX":0,"cls":32,"prodCtx":{"name":"Bus 9","lineId":"9","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 11","icoX":0,"cls":32,"prodCtx":{"name":"Bus 11","lineId":"11","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 11N","icoX":0,"cls":32,"prodCtx":{"name":"Bus 11N","lineId":"11N","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 14","icoX":0,"cls":32,"prodCtx":{"name":"Bus 14","lineId":"14","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 14N","icoX":0,"cls":32,"prodCtx":{"name":"Bus 14N","lineId":"14N","catOut":"Bus ","catOutS":"GB_","catOutL":"Gelenkbus"}},{"name":"Bus 15","icoX":0,"cls":32,"prodCtx":{"name":"Bus 15","lineId":"15","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 72","icoX":0,"cls":32,"prodCtx":{"name":"Bus 72","lineId":"72","catOut":"Bus ","catOutS":"NB","catOutL":"Bus"}},{"name":"Bus 200","icoX":0,"cls":32,"prodCtx":{"name":"Bus 200","lineId":"200","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}},{"name":"Bus 201","icoX":0,"cls":32,"prodCtx":{"name":"Bus 201","lineId":"201","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}},{"name":"Bus 210","icoX":0,"cls":32,"prodCtx":{"name":"Bus 210","lineId":"210","catOut":"Bus ","catOutS":"Bus","catOutL":"Bus"}}],"opL":[{"name":"Kieler Verkehrsgesellschaft mbH","icoX":1,"id":"601"}],"remL":[{"type":"A","code":"eb","prio":899,"icoX":3,"txtN":"Linie der KVG Kieler Verkehrsgesellschaft mbH, Info: <a href=\"tel:043122032203\">0431 2203-2203</a>"}],"icoL":[{"res":"PROD_BUS","fg":{"r":255,"g":255,"b":255},"bg":{"r":255,"g":120,"b":0}},{"res":"KIE","txt":"Kieler Verkehrsgesellschaft mbH"},{"res":"STA"},{"res":"INFO"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":255,"g":120,"b":0}},{"type":"SOLID","bg":{"r":255,"g":120,"b":0}}]},"type":"DEP","jnyL":[{"jid":"1|53923|3|100|18072022","date":"20220718","prodX":0,"dirTxt":"Kiel Pillauer Straße","dirFlg":"1","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":25,"dProdX":0,"dTimeS":"100800","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":2,"tagL":["RES_JNY_DTL"],"sort":923140096}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":2,"fIdx":25,"tIdx":33}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"}],"fpB":"20220303","fpE":"20221227","planrtTS":"1651591446","sD":"20220503","sT":"172436","locRefL":[0]}}]}

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:08:00 GMT",
"date": "Tue, 03 May 2022 15:24:36 GMT",
"server": "Apache",
"vary": "User-Agent",
"content-length": "1284",
"keep-alive": "timeout=5, max=87",
"content-length": "1285",
"keep-alive": "timeout=5, max=98",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://nah.sh.hafas.de/bin/mgate.exe",
"time": 149,
"time": 126,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-tra608269nsport/608269hafas-608269client608269:test"
"public-tc759bfranspoc759bfrt/hafasc759bf-client:c759bftest"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:30 GMT",
"server": "Apache",
"vary": "Accept-Encoding",
"content-length": "1672",
"keep-alive": "timeout=5, max=99",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://db-regio.hafas.de/bin/hci/mgate.exe",
"time": 304,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-t57c3cfransp57c3cfort/haf57c3cfas-client:57c3cftest"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"288"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:35 GMT",
"server": "Apache",
"vary": "User-Agent",
"content-length": "2005",
"keep-alive": "timeout=5, max=99",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8"
},
"url": "https://nah.sh.hafas.de/bin/mgate.exe",
"time": 708,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"publicc759bf-transpc759bfort/hc759bfafas-cliec759bfnt:test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"264"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,15 +1,15 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:14:33 GMT",
"date": "Tue, 03 May 2022 15:24:29 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "1653",
"content-length": "1652",
"connection": "keep-alive",
"server": "Apache",
"vary": "Accept-Encoding"
},
"url": "https://capmetro.hafas.cloud/bin/mgate.exe",
"time": 256,
"time": 849,
"request": {
"method": "POST",
"headers": {
@ -23,7 +23,7 @@
"application/json"
],
"user-agent": [
"public-t9a9648ranspor9a9648t/hafa9a9648s-clie9a9648nt:test"
"public-tr0c04d4anspor0c04d4t/haf0c04d4as-clien0c04d4t:tes0c04d4t"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,37 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:25:53 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "1786",
"connection": "keep-alive",
"server": "Apache/2.4.25 (Debian)",
"access-control-allow-origin": "*",
"access-control-allow-headers": "*"
},
"url": "https://mobilapps.rejseplanen.dk/bin/iphone.exe",
"time": 522,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-tra46136ansport/ha46136afas-cl46136aient:t46136aest"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"398"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:54:52 GMT",
"date": "Tue, 03 May 2022 15:30:25 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "4056",
"connection": "keep-alive",
@ -9,7 +9,7 @@
"access-control-allow-origin": "*"
},
"url": "https://auskunft.nvv.de/auskunft/bin/app/mgate.exe",
"time": 331,
"time": 593,
"request": {
"method": "POST",
"headers": {
@ -23,7 +23,7 @@
"application/json"
],
"user-agent": [
"public-trad69f38nsport/d69f38hafas-cd69f38lient:tesd69f38t"
"public-t2f8015ransport2f8015/hafas-c2f8015lient:te2f8015st"
],
"connection": [
"keep-alive"

View file

@ -1 +1 @@
{"ver":"1.41","lang":"deu","id":"zfk8qk8cwg4c9mcs","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Wien Karlsplatz (U4)@X=16369474@Y=48200429@U=81@L=904015@","type":"S","name":"Wien Karlsplatz (U4)","icoX":0,"extId":"904015","state":"F","crd":{"x":16369474,"y":48200429,"floor":0},"pCls":256,"pRefL":[1],"entry":true,"chgTime":"000500"},{"lid":"A=1@O=Wien Hütteldorf Bf (U4)@X=16260794@Y=48196960@U=81@L=914013@","type":"S","name":"Wien Hütteldorf Bf (U4)","icoX":0,"extId":"914013","state":"F","crd":{"x":16260794,"y":48196960,"floor":0},"pCls":256,"entry":true,"chgTime":"000500"}],"prodL":[{"pid":"L::8::::B4256541157::4256541157_U4::*","name":"U4","nameS":"U4","number":"U4","icoX":0,"cls":256,"oprX":0,"prodCtx":{"name":"U4 ","num":"18904","line":"U4","matchId":"0U48530","catOutS":"U","catOutL":"U-Bahn","catIn":"U","catCode":"8","admin":"v04WL_"}},{"name":"","icoX":0,"cls":256,"prodCtx":{"name":""}},{"pid":"L::8::::B4256541157::4256541157_U4::*","name":"U4","nameS":"U4","number":"U4","icoX":0,"cls":256,"oprX":0,"prodCtx":{"name":"U4 ","num":"18901","line":"U4","matchId":"0U48533","catOutS":"U","catOutL":"U-Bahn","catIn":"U","catCode":"8","admin":"v04WL_"}}],"opL":[{"name":"Wiener Linien GmbH & Co KG","url":"https://www.wienerlinien.at","icoX":1,"street":"Erdbergerstraße 202","town":"A-1031 Wien","phone":"+43 1 79090","email":"post@wienerlinien.at","id":"vor+04+WL"}],"remL":[{"type":"A","code":"OB","prio":0,"icoX":2,"txtN":"Niederflurfahrzeug"},{"type":"A","code":"FK","prio":250,"icoX":3,"txtN":"Fahrradmitnahme begrenzt möglich"},{"type":"A","code":"RO","prio":560,"icoX":4,"txtN":"Rollstuhlstellplatz"}],"icoL":[{"res":"prod_sub_t","fg":{"r":255,"g":255,"b":255},"bg":{"r":51,"g":103,"b":170}},{"res":"WiL","txt":"Wiener Linien GmbH & Co KG"},{"res":"attr_low_floor"},{"res":"attr_bike"},{"res":"attr_wchair"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":51,"g":103,"b":170}},{"type":"SOLID","bg":{"r":51,"g":103,"b":170}}]},"type":"DEP","jnyL":[{"jid":"2|#VN#1#ST#1651487868#PI#0#ZI#427778#TA#6#DA#180722#1S#919001#1T#948#LS#914013#LT#1020#PU#81#RT#1#CA#U#ZE#U4#ZB#U4 #PC#8#FR#919001#FT#948#TO#914013#TT#1020#","date":"20220718","prodX":0,"dirTxt":"Wien Hütteldorf Bf (U4)","dirFlg":"R","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":8,"dProdX":0,"dPltfS":{"type":"PL","txt":"2"},"dTimeS":"100200","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_H3"],"sort":536870912},{"type":"REM","remX":1,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":838074368},{"type":"REM","remX":2,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":878706688}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":1,"fIdx":8,"tIdx":19}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"},{"jid":"2|#VN#1#ST#1651487868#PI#0#ZI#427778#TA#7#DA#180722#1S#919001#1T#953#LS#914013#LT#1025#PU#81#RT#1#CA#U#ZE#U4#ZB#U4 #PC#8#FR#919001#FT#953#TO#914013#TT#1025#","date":"20220718","prodX":2,"dirTxt":"Wien Hütteldorf Bf (U4)","dirFlg":"R","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":8,"dProdX":2,"dPltfS":{"type":"PL","txt":"2"},"dTimeS":"100700","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_H3"],"sort":536870912},{"type":"REM","remX":1,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":838074368},{"type":"REM","remX":2,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":878706688}],"subscr":"F","prodL":[{"prodX":2,"fLocX":0,"tLocX":1,"fIdx":8,"tIdx":19}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"}],"fpB":"20220301","fpE":"20221210","planrtTS":"1651589689","sD":"20220503","sT":"165526","locRefL":[0]}}]}
{"ver":"1.41","lang":"deu","id":"5b2gakscwgs5x6cs","err":"OK","graph":{"id":"standard","index":0},"subGraph":{"id":"global","index":0},"view":{"id":"standard","index":0,"type":"WGS84"},"svcResL":[{"meth":"StationBoard","err":"OK","res":{"common":{"locL":[{"lid":"A=1@O=Wien Karlsplatz (U4)@X=16369474@Y=48200429@U=81@L=904015@","type":"S","name":"Wien Karlsplatz (U4)","icoX":0,"extId":"904015","state":"F","crd":{"x":16369474,"y":48200429,"floor":0},"pCls":256,"pRefL":[1],"entry":true,"chgTime":"000500"},{"lid":"A=1@O=Wien Hütteldorf Bf (U4)@X=16260794@Y=48196960@U=81@L=914013@","type":"S","name":"Wien Hütteldorf Bf (U4)","icoX":0,"extId":"914013","state":"F","crd":{"x":16260794,"y":48196960,"floor":0},"pCls":256,"entry":true,"chgTime":"000500"}],"prodL":[{"pid":"L::8::::B4256541157::4256541157_U4::*","name":"U4","nameS":"U4","number":"U4","icoX":0,"cls":256,"oprX":0,"prodCtx":{"name":"U4 ","num":"18904","line":"U4","matchId":"0U48530","catOutS":"U","catOutL":"U-Bahn","catIn":"U","catCode":"8","admin":"v04WL_"}},{"name":"","icoX":0,"cls":256,"prodCtx":{"name":""}},{"pid":"L::8::::B4256541157::4256541157_U4::*","name":"U4","nameS":"U4","number":"U4","icoX":0,"cls":256,"oprX":0,"prodCtx":{"name":"U4 ","num":"18901","line":"U4","matchId":"0U48533","catOutS":"U","catOutL":"U-Bahn","catIn":"U","catCode":"8","admin":"v04WL_"}}],"opL":[{"name":"Wiener Linien GmbH & Co KG","url":"https://www.wienerlinien.at","icoX":1,"street":"Erdbergerstraße 202","town":"A-1031 Wien","phone":"+43 1 79090","email":"post@wienerlinien.at","id":"vor+04+WL"}],"remL":[{"type":"A","code":"OB","prio":0,"icoX":2,"txtN":"Niederflurfahrzeug"},{"type":"A","code":"FK","prio":250,"icoX":3,"txtN":"Fahrradmitnahme begrenzt möglich"},{"type":"A","code":"RO","prio":560,"icoX":4,"txtN":"Rollstuhlstellplatz"}],"icoL":[{"res":"prod_sub_t","fg":{"r":255,"g":255,"b":255},"bg":{"r":51,"g":103,"b":170}},{"res":"WiL","txt":"Wiener Linien GmbH & Co KG"},{"res":"attr_low_floor"},{"res":"attr_bike"},{"res":"attr_wchair"}],"lDrawStyleL":[{"sIcoX":0,"type":"SOLID","bg":{"r":51,"g":103,"b":170}},{"type":"SOLID","bg":{"r":51,"g":103,"b":170}}]},"type":"DEP","jnyL":[{"jid":"2|#VN#1#ST#1651487868#PI#0#ZI#427778#TA#6#DA#180722#1S#919001#1T#948#LS#914013#LT#1020#PU#81#RT#1#CA#U#ZE#U4#ZB#U4 #PC#8#FR#919001#FT#948#TO#914013#TT#1020#","date":"20220718","prodX":0,"dirTxt":"Wien Hütteldorf Bf (U4)","dirFlg":"R","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":8,"dProdX":0,"dPltfS":{"type":"PL","txt":"2"},"dTimeS":"100200","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_H3"],"sort":536870912},{"type":"REM","remX":1,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":838074368},{"type":"REM","remX":2,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":878706688}],"subscr":"F","prodL":[{"prodX":0,"fLocX":0,"tLocX":1,"fIdx":8,"tIdx":19}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"},{"jid":"2|#VN#1#ST#1651487868#PI#0#ZI#427778#TA#7#DA#180722#1S#919001#1T#953#LS#914013#LT#1025#PU#81#RT#1#CA#U#ZE#U4#ZB#U4 #PC#8#FR#919001#FT#953#TO#914013#TT#1025#","date":"20220718","prodX":2,"dirTxt":"Wien Hütteldorf Bf (U4)","dirFlg":"R","status":"P","isRchbl":true,"stbStop":{"locX":0,"idx":8,"dProdX":2,"dPltfS":{"type":"PL","txt":"2"},"dTimeS":"100700","type":"N"},"msgL":[{"type":"REM","remX":0,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_H3"],"sort":536870912},{"type":"REM","remX":1,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":838074368},{"type":"REM","remX":2,"sty":"I","fLocX":0,"tLocX":1,"tagL":["RES_JNY_DTL"],"sort":878706688}],"subscr":"F","prodL":[{"prodX":2,"fLocX":0,"tLocX":1,"fIdx":8,"tIdx":19}],"sumLDrawStyleX":0,"resLDrawStyleX":1,"trainStartDate":"20220718"}],"fpB":"20220301","fpE":"20221210","planrtTS":"1651591701","sD":"20220503","sT":"172857","locRefL":[0]}}]}

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 14:55:24 GMT",
"date": "Tue, 03 May 2022 15:28:55 GMT",
"server": "Apache",
"content-length": "1333",
"keep-alive": "timeout=5, max=96",
"keep-alive": "timeout=5, max=13",
"connection": "Keep-Alive",
"content-type": "application/json; charset=utf-8",
"strict-transport-security": "max-age=63072000; includeSubDomains"
},
"url": "https://fahrplan.oebb.at/bin/mgate.exe",
"time": 2207,
"time": 2217,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-t11cf88ransport/11cf88hafas-c11cf88lient:tes11cf88t"
"public-td14604ransportd14604/hafas-d14604client:td14604est"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -1,16 +1,16 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:08:13 GMT",
"date": "Tue, 03 May 2022 15:25:52 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "3055",
"content-length": "3056",
"connection": "keep-alive",
"server": "Apache/2.4.25 (Debian)",
"access-control-allow-origin": "*",
"access-control-allow-headers": "*"
},
"url": "https://mobilapps.rejseplanen.dk/bin/iphone.exe",
"time": 628,
"time": 917,
"request": {
"method": "POST",
"headers": {
@ -24,7 +24,7 @@
"application/json"
],
"user-agent": [
"public-tf420f4ranspof420f4rt/hafasf420f4-client:tef420f4st"
"public-46136atranspor46136at/hafa46136as-client46136a:test"
],
"connection": [
"keep-alive"

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,34 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:27:24 GMT",
"server": "Apache",
"content-length": "1933",
"content-type": "application/json; charset=utf-8"
},
"url": "https://vrn.hafas.de/bin/mgate.exe",
"time": 280,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"public-f2cb61transf2cb61port/hafasf2cb61-client:tef2cb61st"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"285"
]
}
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,40 @@
{
"statusCode": 200,
"headers": {
"date": "Tue, 03 May 2022 15:24:32 GMT",
"content-type": "application/json; charset=utf-8",
"content-length": "2866",
"connection": "keep-alive",
"set-cookie": [
"AWSALB=ZGIXSb34hNm9KUR0kn/efsZY4D2kigfeUTBd2wYg9mPSdWKfwIii+oZ4J2KuZV50BhHZqxpWCCPIDH61a5QQ3vUrbIUX4ex25sDMVhlWRBf0uc9DsnkReUDIJ8TO; Expires=Tue, 10 May 2022 15:24:32 GMT; Path=/",
"AWSALBCORS=ZGIXSb34hNm9KUR0kn/efsZY4D2kigfeUTBd2wYg9mPSdWKfwIii+oZ4J2KuZV50BhHZqxpWCCPIDH61a5QQ3vUrbIUX4ex25sDMVhlWRBf0uc9DsnkReUDIJ8TO; Expires=Tue, 10 May 2022 15:24:32 GMT; Path=/; SameSite=None; Secure"
],
"server": "Apache",
"strict-transport-security": "max-age=16070400; includeSubDomains"
},
"url": "https://reiseauskunft.bahn.de/bin/mgate.exe?checksum=0192bb73750ca0bcadd5208d0bc33a17",
"time": 191,
"request": {
"method": "POST",
"headers": {
"Content-Type": [
"application/json"
],
"Accept-Encoding": [
"gzip, br, deflate"
],
"Accept": [
"application/json"
],
"user-agent": [
"publicd7256f-trand7256fsport/hd7256fafas-cd7256flientd7256f:test"
],
"connection": [
"keep-alive"
],
"Content-Length": [
"301"
]
}
}
}

Some files were not shown because too many files have changed in this diff Show more