From 66ff661767a5622a9e942774ec6108c6500e26b3 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Sun, 15 Nov 2020 14:42:46 +0100 Subject: [PATCH] =?UTF-8?q?parseJourneyLeg=20applyRemarks:=20handle=20legs?= =?UTF-8?q?=20without=20stopovers=20=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parse/journey-leg.js | 25 +- test/db-journey-2.js | 38 + test/fixtures/db-journey-2.js | 1126 +++++ test/fixtures/db-journey-2.json | 7847 +++++++++++++++++++++++++++++++ test/index.js | 1 + 5 files changed, 9026 insertions(+), 11 deletions(-) create mode 100644 test/db-journey-2.js create mode 100644 test/fixtures/db-journey-2.js create mode 100644 test/fixtures/db-journey-2.json diff --git a/parse/journey-leg.js b/parse/journey-leg.js index e750f9b7..56e4d851 100644 --- a/parse/journey-leg.js +++ b/parse/journey-leg.js @@ -13,19 +13,22 @@ const applyRemarks = (leg, refs) => { for (let [remark, ref] of findRemarks(refs)) { const {fromLocation, toLocation} = ref - let fromI = 0, toI = leg.stopovers.length - 1 - // this fails if `s.stop` is a new object (not reference-equal) - // todo: do this index- or ID-based - if (fromLocation) { - fromI = leg.stopovers.findIndex(s => s.stop === fromLocation) - if (fromI < 0) continue - } - if (toLocation) { - toI = leg.stopovers.findIndex(s => s.stop === toLocation) - if (toI < 0) continue + let wholeLeg = true, fromI = 0, toI = 0 + if (Array.isArray(leg.stopovers)) { + toI = leg.stopovers.length - 1 + // this fails if `s.stop` is a new object (not reference-equal) + // todo: do this index- or ID-based + if (fromLocation) { + fromI = leg.stopovers.findIndex(s => s.stop === fromLocation) + if (fromI < 0) continue + } + if (toLocation) { + toI = leg.stopovers.findIndex(s => s.stop === toLocation) + if (toI < 0) continue + } + wholeLeg = fromI === 0 && toI === (leg.stopovers.length - 1) } - const wholeLeg = fromI === 0 && toI === (leg.stopovers.length - 1) if (wholeLeg) addRemark(leg, remark) else { for (let i = fromI; i <= toI; i++) { diff --git a/test/db-journey-2.js b/test/db-journey-2.js new file mode 100644 index 00000000..3b7f51e6 --- /dev/null +++ b/test/db-journey-2.js @@ -0,0 +1,38 @@ +'use strict' + +const test = require('tape') + +const createClient = require('..') +const rawProfile = require('../p/db') +const res = require('./fixtures/db-journey-2.json') +const expected = require('./fixtures/db-journey-2.js') + +const client = createClient(rawProfile, 'public-transport/hafas-client:test') +const {profile} = client + +const opt = { + results: 4, + via: null, + stopovers: true, + transfers: -1, + transferTime: 0, + accessibility: 'none', + bike: false, + tickets: true, + polylines: true, + remarks: true, + walkingSpeed: 'normal', + startWithWalking: true, + scheduledDays: false, + departure: '2020-11-16T10:00:00+01:00', + products: {} +} + +test('parses a journey remarks without failing', (t) => { + const common = profile.parseCommon({profile, opt, res}) + const ctx = {profile, opt, common, res} + const journey = profile.parseJourney(ctx, res.outConL[2]) + + t.deepEqual(journey, expected) + t.end() +}) diff --git a/test/fixtures/db-journey-2.js b/test/fixtures/db-journey-2.js new file mode 100644 index 00000000..c936d0b1 --- /dev/null +++ b/test/fixtures/db-journey-2.js @@ -0,0 +1,1126 @@ +'use strict' + +module.exports = { + type: 'journey', + legs: [ + { + origin: { + type: 'stop', + id: '8004154', + name: 'München-Mittersendling', + location: { + type: 'location', + id: '8004154', + latitude: 48.107418, + longitude: 11.536306 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: false, + ferry: false, + subway: false, + tram: false, + taxi: false + } + }, + destination: { + type: 'stop', + id: '8004137', + name: 'München Siemenswerke', + location: { + type: 'location', + id: '8004137', + latitude: 48.094492, + longitude: 11.53281 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: true, + ferry: false, + subway: false, + tram: false, + taxi: false + } + }, + departure: '2020-11-16T10:04:00+01:00', + plannedDeparture: '2020-11-16T10:04:00+01:00', + departureDelay: null, + arrival: '2020-11-16T10:05:00+01:00', + plannedArrival: '2020-11-16T10:05:00+01:00', + arrivalDelay: null, + reachable: true, + tripId: '1|9612|1|80|16112020', + line: { + type: 'line', + id: '4-800725-7', + fahrtNr: '6740', + name: 'S 7', + public: true, + adminCode: '800725', + mode: 'train', + product: 'suburban', + operator: { + type: 'operator', + id: 'db-regio-ag-bayern', + name: 'DB Regio AG Bayern' + } + }, + direction: 'Höllriegelskreuth', + arrivalPlatform: '2', + plannedArrivalPlatform: '2', + departurePlatform: '2', + plannedDeparturePlatform: '2', + stopovers: [ + { + stop: { + type: 'stop', + id: '8004154', + name: 'München-Mittersendling', + location: { + type: 'location', + id: '8004154', + latitude: 48.107418, + longitude: 11.536306 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: false, + ferry: false, + subway: false, + tram: false, + taxi: false + } + }, + arrival: null, + plannedArrival: null, + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:04:00+01:00', + plannedDeparture: '2020-11-16T10:04:00+01:00', + departureDelay: null, + departurePlatform: '2', + plannedDeparturePlatform: '2' + }, + { + stop: { + type: 'stop', + id: '8004137', + name: 'München Siemenswerke', + location: { + type: 'location', + id: '8004137', + latitude: 48.094492, + longitude: 11.53281 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: true, + ferry: false, + subway: false, + tram: false, + taxi: false + } + }, + arrival: '2020-11-16T10:05:00+01:00', + plannedArrival: '2020-11-16T10:05:00+01:00', + arrivalDelay: null, + arrivalPlatform: '2', + plannedArrivalPlatform: '2', + departure: null, + plannedDeparture: null, + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + } + ], + remarks: [ + { + type: 'hint', + code: 'PB', + text: 'Obligation to cover nose and mouth' + }, + { + text: 'Number of bicycles conveyed limited', + type: 'hint', + code: 'bicycle-conveyance', + summary: 'bicycles conveyed' + }, + { + type: 'hint', + code: 'FS', + text: 'conveying bicycles: mind the excluded times' + }, + { + text: '2nd class only', + type: 'hint', + code: '2nd-class-only', + summary: '2. class only' + } + ], + cycle: {min: 1200, max: 1200, nr: 7} + }, + { + origin: { + type: 'stop', + id: '8004137', + name: 'München Siemenswerke', + location: { + type: 'location', + id: '8004137', + latitude: 48.094492, + longitude: 11.53281 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: true, + ferry: false, + subway: false, + tram: false, + taxi: false + } + }, + destination: { + type: 'stop', + id: '625016', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625016', + latitude: 48.098357, + longitude: 11.536261 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '625021', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625021', + latitude: 48.098627, + longitude: 11.538023 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + departure: '2020-11-16T10:05:00+01:00', + plannedDeparture: '2020-11-16T10:05:00+01:00', + departureDelay: null, + arrival: '2020-11-16T10:15:00+01:00', + plannedArrival: '2020-11-16T10:15:00+01:00', + arrivalDelay: null, + public: true, + walking: true, + distance: 500, + remarks: [ {type: 'hint', code: 'XK', text: 'walking distance 500 m'} ] + }, + { + origin: { + type: 'stop', + id: '625016', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625016', + latitude: 48.098357, + longitude: 11.536261 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '625021', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625021', + latitude: 48.098627, + longitude: 11.538023 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + destination: { + type: 'stop', + id: '624333', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '624333', + latitude: 48.166702, + longitude: 11.578151 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '790754', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '790754', + latitude: 48.167035, + longitude: 11.579347 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + departure: '2020-11-16T10:15:00+01:00', + plannedDeparture: '2020-11-16T10:15:00+01:00', + departureDelay: null, + arrival: '2020-11-16T10:33:00+01:00', + plannedArrival: '2020-11-16T10:33:00+01:00', + arrivalDelay: null, + reachable: true, + tripId: '1|24525|9|80|16112020', + line: { + type: 'line', + id: '7-swm001-3', + fahrtNr: '3032', + name: 'U 3', + public: true, + adminCode: 'swm001', + mode: 'train', + product: 'subway' + }, + direction: 'Moosach, München', + arrivalPlatform: null, + plannedArrivalPlatform: null, + departurePlatform: null, + plannedDeparturePlatform: null, + stopovers: [ + { + stop: { + type: 'stop', + id: '625016', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625016', + latitude: 48.098357, + longitude: 11.536261 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '625021', + name: 'Obersendling, München', + location: { + type: 'location', + id: '625021', + latitude: 48.098627, + longitude: 11.538023 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: null, + plannedArrival: null, + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:15:00+01:00', + plannedDeparture: '2020-11-16T10:15:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '625236', + name: 'Thalkirchen (Tierpark), München', + location: { + type: 'location', + id: '625236', + latitude: 48.102708, + longitude: 11.546015 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '625242', + name: 'Thalkirchen (Tierpark), München', + location: { + type: 'location', + id: '625242', + latitude: 48.101009, + longitude: 11.54668 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:16:00+01:00', + plannedArrival: '2020-11-16T10:16:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:16:00+01:00', + plannedDeparture: '2020-11-16T10:16:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '624342', + name: 'Brudermühlstraße, München', + location: { + type: 'location', + id: '624342', + latitude: 48.112596, + longitude: 11.548721 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '624345', + name: 'Brudermühlstraße, München', + location: { + type: 'location', + id: '624345', + latitude: 48.112209, + longitude: 11.548235 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:18:00+01:00', + plannedArrival: '2020-11-16T10:18:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:18:00+01:00', + plannedDeparture: '2020-11-16T10:18:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '624684', + name: 'Implerstraße, München', + location: { + type: 'location', + id: '624684', + latitude: 48.120138, + longitude: 11.548433 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '624691', + name: 'Implerstraße, München', + location: { + type: 'location', + id: '624691', + latitude: 48.119392, + longitude: 11.548855 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:20:00+01:00', + plannedArrival: '2020-11-16T10:20:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:20:00+01:00', + plannedDeparture: '2020-11-16T10:20:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'station', + id: '625095', + name: 'Poccistraße, München', + location: { + type: 'location', + id: '625095', + latitude: 48.125513, + longitude: 11.550357 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + }, + arrival: '2020-11-16T10:21:00+01:00', + plannedArrival: '2020-11-16T10:21:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:21:00+01:00', + plannedDeparture: '2020-11-16T10:21:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'station', + id: '624535', + name: 'Goetheplatz, München', + location: { + type: 'location', + id: '624535', + latitude: 48.129064, + longitude: 11.557422 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + }, + arrival: '2020-11-16T10:22:00+01:00', + plannedArrival: '2020-11-16T10:22:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:22:00+01:00', + plannedDeparture: '2020-11-16T10:22:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'station', + id: '625176', + name: 'Sendlinger Tor, München', + location: { + type: 'location', + id: '625176', + latitude: 48.133406, + longitude: 11.566744 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: true, + taxi: false + } + }, + arrival: '2020-11-16T10:24:00+01:00', + plannedArrival: '2020-11-16T10:24:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:24:00+01:00', + plannedDeparture: '2020-11-16T10:24:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '624885', + name: 'Marienplatz, München', + location: { + type: 'location', + id: '624885', + latitude: 48.137829, + longitude: 11.576596 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '8004135', + name: 'München Marienplatz', + location: { + type: 'location', + id: '8004135', + latitude: 48.137047, + longitude: 11.575383 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: true, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:26:00+01:00', + plannedArrival: '2020-11-16T10:26:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:26:00+01:00', + plannedDeparture: '2020-11-16T10:26:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '638143', + name: 'Odeonsplatz, München', + location: { + type: 'location', + id: '638143', + latitude: 48.143411, + longitude: 11.57798 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '8070914', + name: 'München Odeonsplatz', + location: { + type: 'location', + id: '8070914', + latitude: 48.142943, + longitude: 11.577819 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: true, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:27:00+01:00', + plannedArrival: '2020-11-16T10:27:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:27:00+01:00', + plannedDeparture: '2020-11-16T10:27:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '638611', + name: 'Universität, München', + location: { + type: 'location', + id: '638611', + latitude: 48.150063, + longitude: 11.581001 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '625286', + name: 'Universität, München', + location: { + type: 'location', + id: '625286', + latitude: 48.148283, + longitude: 11.580048 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:29:00+01:00', + plannedArrival: '2020-11-16T10:29:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:29:00+01:00', + plannedDeparture: '2020-11-16T10:29:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '624521', + name: 'Giselastraße, München', + location: { + type: 'location', + id: '624521', + latitude: 48.156517, + longitude: 11.584003 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '624526', + name: 'Giselastraße, München', + location: { + type: 'location', + id: '624526', + latitude: 48.157236, + longitude: 11.584803 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:30:00+01:00', + plannedArrival: '2020-11-16T10:30:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:30:00+01:00', + plannedDeparture: '2020-11-16T10:30:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'station', + id: '624950', + name: 'Münchner Freiheit, München', + location: { + type: 'location', + id: '624950', + latitude: 48.161839, + longitude: 11.586331 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: true, + ferry: false, + subway: true, + tram: true, + taxi: false + } + }, + arrival: '2020-11-16T10:31:00+01:00', + plannedArrival: '2020-11-16T10:31:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: '2020-11-16T10:31:00+01:00', + plannedDeparture: '2020-11-16T10:31:00+01:00', + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + }, + { + stop: { + type: 'stop', + id: '624333', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '624333', + latitude: 48.166702, + longitude: 11.578151 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '790754', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '790754', + latitude: 48.167035, + longitude: 11.579347 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + arrival: '2020-11-16T10:33:00+01:00', + plannedArrival: '2020-11-16T10:33:00+01:00', + arrivalDelay: null, + arrivalPlatform: null, + plannedArrivalPlatform: null, + departure: null, + plannedDeparture: null, + departureDelay: null, + departurePlatform: null, + plannedDeparturePlatform: null + } + ], + cycle: {min: 600, max: 600, nr: 13} + }, + { + origin: { + type: 'stop', + id: '624333', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '624333', + latitude: 48.166702, + longitude: 11.578151 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + }, + station: { + type: 'station', + id: '790754', + name: 'Bonner Platz, München', + location: { + type: 'location', + id: '790754', + latitude: 48.167035, + longitude: 11.579347 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: true, + tram: false, + taxi: false + } + } + }, + destination: { + type: 'station', + id: '621790', + name: 'Karl-Theodor-Straße, München', + location: { + type: 'location', + id: '621790', + latitude: 48.166918, + longitude: 11.574043 + }, + products: { + nationalExpress: false, + national: false, + regionalExp: false, + regional: false, + suburban: false, + bus: false, + ferry: false, + subway: false, + tram: true, + taxi: false + } + }, + departure: '2020-11-16T10:33:00+01:00', + plannedDeparture: '2020-11-16T10:33:00+01:00', + departureDelay: null, + arrival: '2020-11-16T10:38:00+01:00', + plannedArrival: '2020-11-16T10:38:00+01:00', + arrivalDelay: null, + public: true, + walking: true, + distance: 353 + } + ], + refreshToken: '¶HKI¶T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Siemenswerke@L=8004137@a=128@$202011161004$202011161005$S 7$$1$$$§W$A=1@O=München Siemenswerke@L=8004137@a=128@$A=1@O=Obersendling, München@L=625016@a=128@$202011161005$202011161015$$$1$$$§T$A=1@O=Obersendling, München@L=625016@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161015$202011161033$U 3$$1$$$§G@F$A=1@O=Bonner Platz, München@L=624333@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161033$202011161038$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§', + cycle: {min: 1200}, + price: null +} diff --git a/test/fixtures/db-journey-2.json b/test/fixtures/db-journey-2.json new file mode 100644 index 00000000..89160e5c --- /dev/null +++ b/test/fixtures/db-journey-2.json @@ -0,0 +1,7847 @@ +{ + "common": { + "locL": [ + { + "lid": "A=1@O=München-Mittersendling@X=11536351@Y=48107823@U=80@L=8004154@", + "type": "S", + "name": "München-Mittersendling", + "icoX": 0, + "extId": "8004154", + "state": "F", + "crd": { + "x": 11536306, + "y": 48107418, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 24, + "pRefL": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "lid": "A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@", + "type": "S", + "name": "Karl-Theodor-Straße, München", + "icoX": 4, + "extId": "621790", + "state": "F", + "crd": { + "x": 11574043, + "y": 48166918, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "pRefL": [ + 6, + 7 + ], + "isMainMast": true + }, + { + "lid": "A=1@O=Thalkirchen (Tierpark), München@X=11546015@Y=48102708@U=80@L=625236@", + "type": "S", + "name": "Thalkirchen (Tierpark), München", + "icoX": 5, + "extId": "625236", + "state": "F", + "crd": { + "x": 11546015, + "y": 48102708, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "pRefL": [ + 8, + 9 + ], + "mMastLocX": 3 + }, + { + "lid": "A=1@O=Thalkirchen (Tierpark), München@X=11546680@Y=48101009@U=80@L=625242@", + "type": "S", + "name": "Thalkirchen (Tierpark), München", + "icoX": 5, + "extId": "625242", + "state": "F", + "crd": { + "x": 11546680, + "y": 48101009, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "pRefL": [ + 8 + ] + }, + { + "lid": "A=1@O=Bonner Platz, München@X=11578151@Y=48166702@U=80@L=624333@", + "type": "S", + "name": "Bonner Platz, München", + "icoX": 6, + "extId": "624333", + "state": "F", + "crd": { + "x": 11578151, + "y": 48166702, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 128, + "pRefL": [ + 9 + ], + "mMastLocX": 5 + }, + { + "lid": "A=1@O=Bonner Platz, München@X=11579347@Y=48167035@U=80@L=790754@", + "type": "S", + "name": "Bonner Platz, München", + "icoX": 8, + "extId": "790754", + "state": "F", + "crd": { + "x": 11579347, + "y": 48167035, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 128, + "isMainMast": true + }, + { + "lid": "A=1@O=Brudermühlstraße, München@X=11548721@Y=48112596@U=80@L=624342@", + "type": "S", + "name": "Brudermühlstraße, München", + "icoX": 5, + "extId": "624342", + "state": "F", + "crd": { + "x": 11548721, + "y": 48112596, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "mMastLocX": 7 + }, + { + "lid": "A=1@O=Brudermühlstraße, München@X=11548235@Y=48112209@U=80@L=624345@", + "type": "S", + "name": "Brudermühlstraße, München", + "icoX": 5, + "extId": "624345", + "state": "F", + "crd": { + "x": 11548235, + "y": 48112209, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Implerstraße, München@X=11548433@Y=48120138@U=80@L=624684@", + "type": "S", + "name": "Implerstraße, München", + "icoX": 5, + "extId": "624684", + "state": "F", + "crd": { + "x": 11548433, + "y": 48120138, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "mMastLocX": 9 + }, + { + "lid": "A=1@O=Implerstraße, München@X=11548855@Y=48119392@U=80@L=624691@", + "type": "S", + "name": "Implerstraße, München", + "icoX": 5, + "extId": "624691", + "state": "F", + "crd": { + "x": 11548855, + "y": 48119392, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160 + }, + { + "lid": "A=1@O=Poccistraße, München@X=11550357@Y=48125513@U=80@L=625095@", + "type": "S", + "name": "Poccistraße, München", + "icoX": 5, + "extId": "625095", + "state": "F", + "crd": { + "x": 11550357, + "y": 48125513, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Goetheplatz, München@X=11557422@Y=48129064@U=80@L=624535@", + "type": "S", + "name": "Goetheplatz, München", + "icoX": 5, + "extId": "624535", + "state": "F", + "crd": { + "x": 11557422, + "y": 48129064, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Sendlinger Tor, München@X=11566744@Y=48133406@U=80@L=625176@", + "type": "S", + "name": "Sendlinger Tor, München", + "icoX": 5, + "extId": "625176", + "state": "F", + "crd": { + "x": 11566744, + "y": 48133406, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "isMainMast": true + }, + { + "lid": "A=1@O=Marienplatz, München@X=11576596@Y=48137829@U=80@L=624885@", + "type": "S", + "name": "Marienplatz, München", + "icoX": 0, + "extId": "624885", + "state": "F", + "crd": { + "x": 11576596, + "y": 48137829, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184, + "mMastLocX": 14 + }, + { + "lid": "A=1@O=München Marienplatz@X=11575383@Y=48137047@U=80@L=8004135@", + "type": "S", + "name": "München Marienplatz", + "icoX": 0, + "extId": "8004135", + "state": "F", + "crd": { + "x": 11575383, + "y": 48137047, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184 + }, + { + "lid": "A=1@O=Odeonsplatz, München@X=11577980@Y=48143411@U=80@L=638143@", + "type": "S", + "name": "Odeonsplatz, München", + "icoX": 0, + "extId": "638143", + "state": "F", + "crd": { + "x": 11577980, + "y": 48143411, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 168, + "mMastLocX": 16 + }, + { + "lid": "A=1@O=München Odeonsplatz@X=11577819@Y=48142943@U=80@L=8070914@", + "type": "S", + "name": "München Odeonsplatz", + "icoX": 0, + "extId": "8070914", + "state": "F", + "crd": { + "x": 11577819, + "y": 48142943, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 168 + }, + { + "lid": "A=1@O=Universität, München@X=11581001@Y=48150063@U=80@L=638611@", + "type": "S", + "name": "Universität, München", + "icoX": 5, + "extId": "638611", + "state": "F", + "crd": { + "x": 11581001, + "y": 48150063, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "mMastLocX": 18 + }, + { + "lid": "A=1@O=Universität, München@X=11580048@Y=48148283@U=80@L=625286@", + "type": "S", + "name": "Universität, München", + "icoX": 5, + "extId": "625286", + "state": "F", + "crd": { + "x": 11580048, + "y": 48148283, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Giselastraße, München@X=11584003@Y=48156517@U=80@L=624521@", + "type": "S", + "name": "Giselastraße, München", + "icoX": 5, + "extId": "624521", + "state": "F", + "crd": { + "x": 11584003, + "y": 48156517, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "mMastLocX": 20 + }, + { + "lid": "A=1@O=Giselastraße, München@X=11584803@Y=48157236@U=80@L=624526@", + "type": "S", + "name": "Giselastraße, München", + "icoX": 5, + "extId": "624526", + "state": "F", + "crd": { + "x": 11584803, + "y": 48157236, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Münchner Freiheit, München@X=11586331@Y=48161839@U=80@L=624950@", + "type": "S", + "name": "Münchner Freiheit, München", + "icoX": 5, + "extId": "624950", + "state": "F", + "crd": { + "x": 11586331, + "y": 48161839, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "isMainMast": true + }, + { + "lid": "A=1@O=Adunistraße, München@X=11534356@Y=48109297@U=80@L=790090@", + "type": "S", + "name": "Adunistraße, München", + "icoX": 5, + "extId": "790090", + "state": "F", + "crd": { + "x": 11534356, + "y": 48109297, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "pRefL": [ + 13, + 14 + ], + "isMainMast": true + }, + { + "lid": "A=1@O=Pündterplatz, München@X=11576866@Y=48162603@U=80@L=622912@", + "type": "S", + "name": "Pündterplatz, München", + "icoX": 5, + "extId": "622912", + "state": "F", + "crd": { + "x": 11576866, + "y": 48162603, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "pRefL": [ + 13, + 16, + 17 + ] + }, + { + "lid": "A=1@O=Johann-Clanze-Straße, München@X=11533906@Y=48113054@U=80@L=790091@", + "type": "S", + "name": "Johann-Clanze-Straße, München", + "icoX": 5, + "extId": "790091", + "state": "F", + "crd": { + "x": 11533906, + "y": 48113054, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 25 + }, + { + "lid": "A=1@O=Johann-Clanze-Straße, München@X=11533142@Y=48112830@U=80@L=790309@", + "type": "S", + "name": "Johann-Clanze-Straße, München", + "icoX": 5, + "extId": "790309", + "state": "F", + "crd": { + "x": 11533142, + "y": 48112830, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Harras, München@X=11536828@Y=48116785@U=80@L=623510@", + "type": "S", + "name": "Harras, München", + "icoX": 0, + "extId": "623510", + "state": "F", + "crd": { + "x": 11536828, + "y": 48116785, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184, + "mMastLocX": 27 + }, + { + "lid": "A=1@O=München Harras@X=11536315@Y=48117747@U=80@L=8004130@", + "type": "S", + "name": "München Harras", + "icoX": 0, + "extId": "8004130", + "state": "F", + "crd": { + "x": 11536315, + "y": 48117747, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184 + }, + { + "lid": "A=1@O=Am Harras, München@X=11540190@Y=48117198@U=80@L=790082@", + "type": "S", + "name": "Am Harras, München", + "icoX": 5, + "extId": "790082", + "state": "F", + "crd": { + "x": 11540190, + "y": 48117198, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 29 + }, + { + "lid": "A=1@O=Am Harras, München@X=11540046@Y=48116263@U=80@L=626017@", + "type": "S", + "name": "Am Harras, München", + "icoX": 5, + "extId": "626017", + "state": "F", + "crd": { + "x": 11540046, + "y": 48116263, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Margaretenplatz, München@X=11540873@Y=48120093@U=80@L=790083@", + "type": "S", + "name": "Margaretenplatz, München", + "icoX": 5, + "extId": "790083", + "state": "F", + "crd": { + "x": 11540873, + "y": 48120093, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 31 + }, + { + "lid": "A=1@O=Margaretenplatz, München@X=11540567@Y=48119976@U=80@L=790074@", + "type": "S", + "name": "Margaretenplatz, München", + "icoX": 5, + "extId": "790074", + "state": "F", + "crd": { + "x": 11540567, + "y": 48119976, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Sendlinger Kirche, München@X=11541224@Y=48121900@U=80@L=790084@", + "type": "S", + "name": "Sendlinger Kirche, München", + "icoX": 5, + "extId": "790084", + "state": "F", + "crd": { + "x": 11541224, + "y": 48121900, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 33 + }, + { + "lid": "A=1@O=Sendlinger Kirche, München@X=11541044@Y=48122080@U=80@L=790073@", + "type": "S", + "name": "Sendlinger Kirche, München", + "icoX": 5, + "extId": "790073", + "state": "F", + "crd": { + "x": 11541044, + "y": 48122080, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Herzog-Ernst-Platz, München@X=11540648@Y=48125720@U=80@L=626031@", + "type": "S", + "name": "Herzog-Ernst-Platz, München", + "icoX": 5, + "extId": "626031", + "state": "F", + "crd": { + "x": 11540648, + "y": 48125720, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Ganghoferbrücke, München@X=11539111@Y=48127931@U=80@L=621081@", + "type": "S", + "name": "Ganghoferbrücke, München", + "icoX": 5, + "extId": "621081", + "state": "F", + "crd": { + "x": 11539111, + "y": 48127931, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32 + }, + { + "lid": "A=1@O=Ridlerstraße, München@X=11539390@Y=48131024@U=80@L=639101@", + "type": "S", + "name": "Ridlerstraße, München", + "icoX": 5, + "extId": "639101", + "state": "F", + "crd": { + "x": 11539390, + "y": 48131024, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 37 + }, + { + "lid": "A=1@O=Ridlerstraße, München@X=11539246@Y=48130763@U=80@L=622234@", + "type": "S", + "name": "Ridlerstraße, München", + "icoX": 5, + "extId": "622234", + "state": "F", + "crd": { + "x": 11539246, + "y": 48130763, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Schwanthalerhöhe, München@X=11539830@Y=48133316@U=80@L=790085@", + "type": "S", + "name": "Schwanthalerhöhe, München", + "icoX": 5, + "extId": "790085", + "state": "F", + "crd": { + "x": 11539830, + "y": 48133316, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "mMastLocX": 39 + }, + { + "lid": "A=1@O=Schwanthalerhöhe, München@X=11541008@Y=48133765@U=80@L=625167@", + "type": "S", + "name": "Schwanthalerhöhe, München", + "icoX": 9, + "extId": "625167", + "state": "F", + "crd": { + "x": 11541008, + "y": 48133765, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Bergmannstraße, München@X=11537403@Y=48134997@U=80@L=790086@", + "type": "S", + "name": "Bergmannstraße, München", + "icoX": 5, + "extId": "790086", + "state": "F", + "crd": { + "x": 11537403, + "y": 48134997, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 41 + }, + { + "lid": "A=1@O=Bergmannstraße, München@X=11537394@Y=48134862@U=80@L=790070@", + "type": "S", + "name": "Bergmannstraße, München", + "icoX": 5, + "extId": "790070", + "state": "F", + "crd": { + "x": 11537394, + "y": 48134862, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Kazmairstraße, München@X=11534167@Y=48135258@U=80@L=625870@", + "type": "S", + "name": "Kazmairstraße, München", + "icoX": 5, + "extId": "625870", + "state": "F", + "crd": { + "x": 11534167, + "y": 48135258, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Gollierplatz, München@X=11534311@Y=48136300@U=80@L=621250@", + "type": "S", + "name": "Gollierplatz, München", + "icoX": 5, + "extId": "621250", + "state": "F", + "crd": { + "x": 11534311, + "y": 48136300, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32 + }, + { + "lid": "A=1@O=Trappentreustraße, München@X=11534805@Y=48139707@U=80@L=624105@", + "type": "S", + "name": "Trappentreustraße, München", + "icoX": 5, + "extId": "624105", + "state": "F", + "crd": { + "x": 11534805, + "y": 48139707, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 45 + }, + { + "lid": "A=1@O=Trappentreustraße, München@X=11533960@Y=48139438@U=80@L=625387@", + "type": "S", + "name": "Trappentreustraße, München", + "icoX": 5, + "extId": "625387", + "state": "F", + "crd": { + "x": 11533960, + "y": 48139438, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Donnersbergerbrücke, München@X=11534724@Y=48142656@U=80@L=624401@", + "type": "S", + "name": "Donnersbergerbrücke, München", + "icoX": 0, + "extId": "624401", + "state": "F", + "crd": { + "x": 11534724, + "y": 48142656, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 56, + "mMastLocX": 47 + }, + { + "lid": "A=1@O=München Donnersbergerbrücke@X=11536540@Y=48142620@U=80@L=8004128@", + "type": "S", + "name": "München Donnersbergerbrücke", + "icoX": 0, + "extId": "8004128", + "state": "F", + "crd": { + "x": 11536540, + "y": 48142620, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 56 + }, + { + "lid": "A=1@O=Donnersbergerstraße, München@X=11536612@Y=48146728@U=80@L=624410@", + "type": "S", + "name": "Donnersbergerstraße, München", + "icoX": 5, + "extId": "624410", + "state": "F", + "crd": { + "x": 11536612, + "y": 48146728, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Schlörstraße, München@X=11537106@Y=48150081@U=80@L=623072@", + "type": "S", + "name": "Schlörstraße, München", + "icoX": 5, + "extId": "623072", + "state": "F", + "crd": { + "x": 11537106, + "y": 48150081, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32 + }, + { + "lid": "A=1@O=Landshuter Allee, München@X=11536261@Y=48152005@U=80@L=626277@", + "type": "S", + "name": "Landshuter Allee, München", + "icoX": 5, + "extId": "626277", + "state": "F", + "crd": { + "x": 11536261, + "y": 48152005, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "mMastLocX": 51 + }, + { + "lid": "A=1@O=Landshuter Allee, München@X=11536675@Y=48151474@U=80@L=626276@", + "type": "S", + "name": "Landshuter Allee, München", + "icoX": 5, + "extId": "626276", + "state": "F", + "crd": { + "x": 11536675, + "y": 48151474, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 32, + "isMainMast": true + }, + { + "lid": "A=1@O=Rotkreuzplatz, München@X=11534248@Y=48153164@U=80@L=625145@", + "type": "S", + "name": "Rotkreuzplatz, München", + "icoX": 5, + "extId": "625145", + "state": "F", + "crd": { + "x": 11534248, + "y": 48153164, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "mMastLocX": 53 + }, + { + "lid": "A=1@O=Rotkreuzplatz, München@X=11533978@Y=48152841@U=80@L=625146@", + "type": "S", + "name": "Rotkreuzplatz, München", + "icoX": 5, + "extId": "625146", + "state": "F", + "crd": { + "x": 11533978, + "y": 48152841, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "isMainMast": true + }, + { + "lid": "A=1@O=Albrechtstraße, München@X=11540217@Y=48155546@U=80@L=620037@", + "type": "S", + "name": "Albrechtstraße, München", + "icoX": 5, + "extId": "620037", + "state": "F", + "crd": { + "x": 11540217, + "y": 48155546, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288 + }, + { + "lid": "A=1@O=Fasaneriestraße, München@X=11543300@Y=48157182@U=80@L=638962@", + "type": "S", + "name": "Fasaneriestraße, München", + "icoX": 5, + "extId": "638962", + "state": "F", + "crd": { + "x": 11543300, + "y": 48157182, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 56 + }, + { + "lid": "A=1@O=Fasaneriestraße, München@X=11543767@Y=48157524@U=80@L=620829@", + "type": "S", + "name": "Fasaneriestraße, München", + "icoX": 5, + "extId": "620829", + "state": "F", + "crd": { + "x": 11543767, + "y": 48157524, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288 + }, + { + "lid": "A=1@O=Leonrodplatz, München@X=11547067@Y=48159277@U=80@L=624832@", + "type": "S", + "name": "Leonrodplatz, München", + "icoX": 5, + "extId": "624832", + "state": "F", + "crd": { + "x": 11547067, + "y": 48159277, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Infanteriestraße, München@X=11553611@Y=48161443@U=80@L=621695@", + "type": "S", + "name": "Infanteriestraße, München", + "icoX": 5, + "extId": "621695", + "state": "F", + "crd": { + "x": 11553611, + "y": 48161443, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288 + }, + { + "lid": "A=1@O=Barbarastraße, München@X=11557602@Y=48161380@U=80@L=639100@", + "type": "S", + "name": "Barbarastraße, München", + "icoX": 5, + "extId": "639100", + "state": "F", + "crd": { + "x": 11557602, + "y": 48161380, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 60 + }, + { + "lid": "A=1@O=Barbarastraße, München@X=11557602@Y=48161470@U=80@L=620282@", + "type": "S", + "name": "Barbarastraße, München", + "icoX": 5, + "extId": "620282", + "state": "F", + "crd": { + "x": 11557602, + "y": 48161470, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Nordbad, München@X=11564317@Y=48160877@U=80@L=625001@", + "type": "S", + "name": "Nordbad, München", + "icoX": 5, + "extId": "625001", + "state": "F", + "crd": { + "x": 11564317, + "y": 48160877, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 62 + }, + { + "lid": "A=1@O=Nordbad, München@X=11563526@Y=48161254@U=80@L=625002@", + "type": "S", + "name": "Nordbad, München", + "icoX": 4, + "extId": "625002", + "state": "F", + "crd": { + "x": 11563526, + "y": 48161254, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Hohenzollernplatz, München@X=11568128@Y=48161174@U=80@L=638868@", + "type": "S", + "name": "Hohenzollernplatz, München", + "icoX": 5, + "extId": "638868", + "state": "F", + "crd": { + "x": 11568128, + "y": 48161174, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "mMastLocX": 64 + }, + { + "lid": "A=1@O=Hohenzollernplatz, München@X=11568766@Y=48162351@U=80@L=624663@", + "type": "S", + "name": "Hohenzollernplatz, München", + "icoX": 10, + "extId": "624663", + "state": "F", + "crd": { + "x": 11568766, + "y": 48162351, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "isMainMast": true + }, + { + "lid": "A=1@O=Kurfürstenplatz, München@X=11574070@Y=48160401@U=80@L=624793@", + "type": "S", + "name": "Kurfürstenplatz, München", + "icoX": 5, + "extId": "624793", + "state": "F", + "crd": { + "x": 11574070, + "y": 48160401, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 66 + }, + { + "lid": "A=1@O=Kurfürstenplatz, München@X=11574088@Y=48160508@U=80@L=624795@", + "type": "S", + "name": "Kurfürstenplatz, München", + "icoX": 5, + "extId": "624795", + "state": "F", + "crd": { + "x": 11574088, + "y": 48160508, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=München Siemenswerke@X=11532801@Y=48094501@U=80@L=8004137@", + "type": "S", + "name": "München Siemenswerke", + "icoX": 0, + "extId": "8004137", + "state": "F", + "crd": { + "x": 11532810, + "y": 48094492, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 56, + "pRefL": [ + 20, + 0, + 1, + 2, + 3, + 4, + 5, + 21 + ] + }, + { + "lid": "A=1@O=Obersendling, München@X=11536261@Y=48098357@U=80@L=625016@", + "type": "S", + "name": "Obersendling, München", + "icoX": 5, + "extId": "625016", + "state": "F", + "crd": { + "x": 11536261, + "y": 48098357, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "pRefL": [ + 23, + 21, + 9 + ], + "mMastLocX": 69 + }, + { + "lid": "A=1@O=Obersendling, München@X=11538023@Y=48098627@U=80@L=625021@", + "type": "S", + "name": "Obersendling, München", + "icoX": 5, + "extId": "625021", + "state": "F", + "crd": { + "x": 11538023, + "y": 48098627, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "pRefL": [ + 23, + 21 + ], + "isMainMast": true + }, + { + "lid": "A=1@O=Karl-Theodor-Straße, München@X=11574034@Y=48166900@U=80@L=638842@", + "type": "S", + "name": "Karl-Theodor-Straße, München", + "icoX": 4, + "extId": "638842", + "state": "F", + "crd": { + "x": 11574034, + "y": 48166900, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "pRefL": [ + 6, + 7 + ], + "mMastLocX": 1 + }, + { + "lid": "A=1@O=Harras, München@X=11537907@Y=48116893@U=80@L=624602@", + "type": "S", + "name": "Harras, München", + "icoX": 0, + "extId": "624602", + "state": "F", + "crd": { + "x": 11537907, + "y": 48116893, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184, + "pRefL": [ + 20, + 0, + 1, + 3, + 4, + 13, + 31, + 32, + 33, + 23, + 34, + 14, + 35, + 36 + ], + "mMastLocX": 27 + }, + { + "lid": "A=1@O=Sendlinger Tor, München@X=11566142@Y=48133703@U=80@L=624625@", + "type": "S", + "name": "Sendlinger Tor, München", + "icoX": 5, + "extId": "624625", + "state": "F", + "crd": { + "x": 11566142, + "y": 48133703, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "pRefL": [ + 39, + 40, + 34, + 14, + 41, + 42, + 43, + 9, + 36, + 44, + 45, + 46, + 47, + 48, + 49, + 7, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57 + ], + "mMastLocX": 12 + }, + { + "lid": "A=1@O=Karlsplatz (Stachus), München@X=11565360@Y=48138638@U=80@L=624746@", + "type": "S", + "name": "Karlsplatz (Stachus), München", + "icoX": 0, + "extId": "624746", + "state": "F", + "crd": { + "x": 11565360, + "y": 48138638, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 440, + "pRefL": [ + 2, + 59, + 60, + 61, + 3, + 62, + 63, + 4, + 64, + 65, + 66, + 34, + 14, + 41, + 67, + 68, + 46, + 47, + 48, + 69, + 70, + 71, + 49, + 7, + 50, + 51, + 52, + 72, + 53, + 54, + 55, + 56, + 73, + 57 + ], + "mMastLocX": 74 + }, + { + "lid": "A=1@O=München Karlsplatz@X=11565620@Y=48139456@U=80@L=8004132@", + "type": "S", + "name": "München Karlsplatz", + "icoX": 0, + "extId": "8004132", + "state": "F", + "crd": { + "x": 11565620, + "y": 48139456, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 440, + "pRefL": [ + 2, + 59, + 60, + 61, + 3, + 62, + 63, + 4, + 64 + ] + }, + { + "lid": "A=1@O=Karlsplatz (Stachus), München@X=11565189@Y=48138503@U=80@L=624744@", + "type": "S", + "name": "Karlsplatz (Stachus), München", + "icoX": 0, + "extId": "624744", + "state": "F", + "crd": { + "x": 11565189, + "y": 48138503, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 440, + "pRefL": [ + 2, + 59, + 60, + 61, + 3, + 62, + 63, + 4, + 64, + 65, + 66, + 34, + 14, + 41, + 67, + 68, + 46, + 47, + 48, + 69, + 70, + 71, + 49, + 7, + 50, + 51, + 52, + 72, + 53, + 54, + 55, + 56, + 73, + 57 + ], + "mMastLocX": 74 + }, + { + "lid": "A=1@O=Ottostraße, München@X=11567778@Y=48142350@U=80@L=637392@", + "type": "S", + "name": "Ottostraße, München", + "icoX": 4, + "extId": "637392", + "state": "F", + "crd": { + "x": 11567778, + "y": 48142350, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "mMastLocX": 77 + }, + { + "lid": "A=1@O=Ottostraße, München@X=11567877@Y=48142503@U=80@L=622657@", + "type": "S", + "name": "Ottostraße, München", + "icoX": 8, + "extId": "622657", + "state": "F", + "crd": { + "x": 11567877, + "y": 48142503, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "isMainMast": true + }, + { + "lid": "A=1@O=Karolinenplatz, München@X=11569701@Y=48145550@U=80@L=637306@", + "type": "S", + "name": "Karolinenplatz, München", + "icoX": 4, + "extId": "637306", + "state": "F", + "crd": { + "x": 11569701, + "y": 48145550, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "mMastLocX": 79 + }, + { + "lid": "A=1@O=Karolinenplatz, München@X=11569854@Y=48145739@U=80@L=621834@", + "type": "S", + "name": "Karolinenplatz, München", + "icoX": 8, + "extId": "621834", + "state": "F", + "crd": { + "x": 11569854, + "y": 48145739, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "isMainMast": true + }, + { + "lid": "A=1@O=Pinakotheken, München@X=11571877@Y=48148706@U=80@L=622753@", + "type": "S", + "name": "Pinakotheken, München", + "icoX": 5, + "extId": "622753", + "state": "F", + "crd": { + "x": 11571877, + "y": 48148706, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Schellingstraße, München@X=11573216@Y=48150809@U=80@L=625623@", + "type": "S", + "name": "Schellingstraße, München", + "icoX": 5, + "extId": "625623", + "state": "F", + "crd": { + "x": 11573216, + "y": 48150809, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "isMainMast": true + }, + { + "lid": "A=1@O=Nordendstraße, München@X=11575410@Y=48154872@U=80@L=638853@", + "type": "S", + "name": "Nordendstraße, München", + "icoX": 4, + "extId": "638853", + "state": "F", + "crd": { + "x": 11575410, + "y": 48154872, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "mMastLocX": 83 + }, + { + "lid": "A=1@O=Nordendstraße, München@X=11575445@Y=48154908@U=80@L=622468@", + "type": "S", + "name": "Nordendstraße, München", + "icoX": 8, + "extId": "622468", + "state": "F", + "crd": { + "x": 11575445, + "y": 48154908, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "isMainMast": true + }, + { + "lid": "A=1@O=Elisabethplatz, München@X=11575077@Y=48157452@U=80@L=638854@", + "type": "S", + "name": "Elisabethplatz, München", + "icoX": 4, + "extId": "638854", + "state": "F", + "crd": { + "x": 11575077, + "y": 48157452, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256, + "mMastLocX": 85 + }, + { + "lid": "A=1@O=Elisabethplatz, München@X=11574852@Y=48157875@U=80@L=620696@", + "type": "S", + "name": "Elisabethplatz, München", + "icoX": 4, + "extId": "620696", + "state": "F", + "crd": { + "x": 11574852, + "y": 48157875, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256 + }, + { + "lid": "A=1@O=Kurfürstenplatz, München@X=11574951@Y=48160014@U=80@L=636453@", + "type": "S", + "name": "Kurfürstenplatz, München", + "icoX": 5, + "extId": "636453", + "state": "F", + "crd": { + "x": 11574951, + "y": 48160014, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 288, + "mMastLocX": 66 + }, + { + "lid": "A=1@O=Clemensstraße, München@X=11574681@Y=48163268@U=80@L=620414@", + "type": "S", + "name": "Clemensstraße, München", + "icoX": 4, + "extId": "620414", + "state": "F", + "crd": { + "x": 11574681, + "y": 48163268, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 256 + }, + { + "lid": "A=1@O=München Hbf (tief)@X=11560496@Y=48141173@U=80@L=8098263@", + "type": "S", + "name": "München Hbf (tief)", + "icoX": 25, + "extId": "8098263", + "state": "F", + "crd": { + "x": 11560496, + "y": 48141173, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 959, + "pRefL": [ + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 20, + 0, + 1, + 87, + 88, + 2, + 89, + 90, + 59, + 60, + 61, + 3, + 62, + 63, + 4, + 64, + 91, + 92, + 93, + 65, + 66, + 94, + 95, + 42, + 43, + 67, + 68, + 44, + 45, + 46, + 96, + 48, + 69, + 70, + 71, + 50, + 53, + 54, + 55, + 73, + 97 + ], + "entry": true, + "mMastLocX": 89 + }, + { + "lid": "A=1@O=München Hbf@X=11558339@Y=48140229@U=80@L=8000261@", + "type": "S", + "name": "München Hbf", + "icoX": 25, + "extId": "8000261", + "state": "F", + "crd": { + "x": 11558339, + "y": 48140229, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 959, + "pRefL": [ + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 2, + 89, + 60, + 61, + 97 + ] + }, + { + "lid": "A=1@O=München Heimeranplatz@X=11531497@Y=48132965@U=80@L=8005419@", + "type": "S", + "name": "München Heimeranplatz", + "icoX": 0, + "extId": "8005419", + "state": "F", + "crd": { + "x": 11531497, + "y": 48132965, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 184 + }, + { + "lid": "A=1@O=München Hackerbrücke@X=11548568@Y=48141973@U=80@L=8004129@", + "type": "S", + "name": "München Hackerbrücke", + "icoX": 0, + "extId": "8004129", + "state": "F", + "crd": { + "x": 11548532, + "y": 48141919, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 312 + }, + { + "lid": "A=1@O=Hauptbahnhof, München@X=11561153@Y=48140049@U=80@L=624637@", + "type": "S", + "name": "Hauptbahnhof, München", + "icoX": 25, + "extId": "624637", + "state": "F", + "crd": { + "x": 11561153, + "y": 48140049, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 959, + "pRefL": [ + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 20, + 0, + 1, + 87, + 88, + 2, + 89, + 90, + 59, + 60, + 61, + 3, + 62, + 63, + 4, + 64, + 91, + 92, + 93, + 65, + 66, + 94, + 95, + 42, + 43, + 67, + 68, + 44, + 45, + 46, + 96, + 48, + 69, + 70, + 71, + 50, + 53, + 54, + 55, + 73, + 97 + ], + "mMastLocX": 89 + }, + { + "lid": "A=1@O=Scheidplatz, München@X=11572937@Y=48171547@U=80@L=624529@", + "type": "S", + "name": "Scheidplatz, München", + "icoX": 5, + "extId": "624529", + "state": "F", + "crd": { + "x": 11572937, + "y": 48171547, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "pRefL": [ + 99, + 100, + 101, + 102, + 103, + 43, + 9, + 45, + 6, + 7 + ], + "mMastLocX": 94 + }, + { + "lid": "A=1@O=Scheidplatz, München@X=11573081@Y=48171790@U=80@L=625160@", + "type": "S", + "name": "Scheidplatz, München", + "icoX": 5, + "extId": "625160", + "state": "F", + "crd": { + "x": 11573081, + "y": 48171790, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "pRefL": [ + 99, + 100, + 102, + 103 + ], + "isMainMast": true + }, + { + "lid": "A=1@O=Königsplatz, München@X=11563301@Y=48145128@U=80@L=624796@", + "type": "S", + "name": "Königsplatz, München", + "icoX": 5, + "extId": "624796", + "state": "F", + "crd": { + "x": 11563301, + "y": 48145128, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160 + }, + { + "lid": "A=1@O=Theresienstraße, München@X=11564407@Y=48151420@U=80@L=625254@", + "type": "S", + "name": "Theresienstraße, München", + "icoX": 10, + "extId": "625254", + "state": "F", + "crd": { + "x": 11564407, + "y": 48151420, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 128 + }, + { + "lid": "A=1@O=Josephsplatz, München@X=11567059@Y=48155654@U=80@L=624725@", + "type": "S", + "name": "Josephsplatz, München", + "icoX": 5, + "extId": "624725", + "state": "F", + "crd": { + "x": 11567059, + "y": 48155654, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 160, + "isMainMast": true + }, + { + "lid": "A=1@O=Scheidplatz, München@X=11572937@Y=48171385@U=80@L=624388@", + "type": "S", + "name": "Scheidplatz, München", + "icoX": 5, + "extId": "624388", + "state": "F", + "crd": { + "x": 11572937, + "y": 48171385, + "layerX": 0, + "crdSysX": 0 + }, + "pCls": 416, + "pRefL": [ + 99, + 100, + 101, + 102, + 103, + 43, + 9, + 45, + 6, + 7 + ], + "mMastLocX": 94 + } + ], + "prodL": [ + { + "name": "BRB", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "BRB", + "line": "", + "catOut": "DPN ", + "catOutS": "DPN", + "catOutL": "Nahreisezug" + } + }, + { + "name": "M", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "M ", + "line": "", + "catOut": "DPN ", + "catOutS": "DPN", + "catOutL": "Nahreisezug" + } + }, + { + "pid": "L::3::Bus::B1146449194::3_B7_____SEV!!1285884!!5355465::*", + "name": "Bus SEV", + "nameS": "SEV", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "Bus SEV", + "line": "SEV", + "lineId": "3_B7_____SEV!!1285884!!5355465", + "catOut": "Bus ", + "catOutS": "Bsv", + "catOutL": "SEV-Bus" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_3::*", + "name": "S 3", + "nameS": "S 3", + "icoX": 1, + "cls": 16, + "prodCtx": { + "name": "S 3", + "line": "3", + "lineId": "4_800725_3", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1072472", + "RIS_HIM_FREETEXT_1072473", + "RIS_HIM_FREETEXT_1163477", + "RIS_HIM_FREETEXT_1163478", + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1184673" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_7::*", + "name": "S 7", + "nameS": "S 7", + "icoX": 2, + "cls": 16, + "prodCtx": { + "name": "S 7", + "line": "7", + "lineId": "4_800725_7", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1184673", + "RIS_HIM_FREETEXT_1186308" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_20::*", + "name": "S 20", + "nameS": "S 20", + "icoX": 3, + "cls": 16, + "prodCtx": { + "name": "S 20", + "line": "20", + "lineId": "4_800725_20", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_12::*", + "name": "12", + "nameS": "12", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "12", + "line": "12", + "lineId": "8_swm002_12", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "28", + "line": "28", + "lineId": "8_swm002_28", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_135::*", + "name": "135", + "nameS": "135", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "135", + "line": "135", + "lineId": "5_swm003_135", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_3::*", + "name": "U 3", + "nameS": "U 3", + "icoX": 6, + "cls": 128, + "prodCtx": { + "name": "U 3", + "line": "3", + "lineId": "7_swm001_3", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "name": "Walk", + "icoX": 7, + "prodCtx": { + "name": "Walk" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_3::*", + "name": "U 3", + "nameS": "U 3", + "number": "3", + "icoX": 6, + "cls": 128, + "prodCtx": { + "name": "U 3", + "num": "3032", + "line": "3", + "matchId": "3", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_3::*", + "name": "U 3", + "nameS": "U 3", + "number": "3", + "icoX": 6, + "cls": 128, + "prodCtx": { + "name": "U 3", + "num": "3032", + "line": "3", + "lineId": "7_swm001_3", + "matchId": "3", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_53::*", + "name": "53", + "nameS": "53", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "53", + "line": "53", + "lineId": "5_swm003_53", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_N41::*", + "name": "N41", + "nameS": "N41", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "N41", + "line": "N41", + "lineId": "5_swm003_N41", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_53::*", + "name": "53", + "nameS": "53", + "number": "53", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": " 53", + "num": "23898", + "line": "53", + "matchId": "53", + "catOut": "Bus", + "catOutS": "Bus", + "catOutL": "Bus", + "catIn": "Bus", + "catCode": "5", + "admin": "swm003" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_59::*", + "name": "59", + "nameS": "59", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "59", + "line": "59", + "lineId": "5_swm003_59", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_N43::*", + "name": "N43", + "nameS": "N43", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "N43", + "line": "N43", + "lineId": "5_swm003_N43", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_53::*", + "name": "53", + "nameS": "53", + "number": "53", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": " 53", + "num": "23898", + "line": "53", + "lineId": "5_swm003_53", + "matchId": "53", + "catOut": "Bus", + "catOutS": "Bus", + "catOutL": "Bus", + "catIn": "Bus", + "catCode": "5", + "admin": "swm003" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_7::*", + "name": "S 7", + "nameS": "S 7", + "number": "7", + "icoX": 2, + "cls": 16, + "oprX": 0, + "prodCtx": { + "name": "S 7", + "num": "6740", + "line": "7", + "matchId": "7", + "catOut": "S", + "catOutS": "s", + "catOutL": "S-Bahn", + "catIn": "s", + "catCode": "4", + "admin": "800725" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1184673", + "RIS_HIM_FREETEXT_1186308" + ] + }, + { + "name": "BOB", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "BOB", + "line": "", + "catOut": "DPN ", + "catOutS": "DPN", + "catOutL": "Nahreisezug" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_136::*", + "name": "136", + "nameS": "136", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "136", + "line": "136", + "lineId": "5_swm003_136", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_7::*", + "name": "S 7", + "nameS": "S 7", + "number": "7", + "icoX": 2, + "cls": 16, + "oprX": 0, + "prodCtx": { + "name": "S 7", + "num": "6740", + "line": "7", + "lineId": "4_800725_7", + "matchId": "7", + "catOut": "S", + "catOutS": "s", + "catOutL": "S-Bahn", + "catIn": "s", + "catCode": "4", + "admin": "800725" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1184673", + "RIS_HIM_FREETEXT_1186308" + ] + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_134::*", + "name": "134", + "nameS": "134", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "134", + "line": "134", + "lineId": "5_swm003_134", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_3::*", + "name": "U 3", + "nameS": "U 3", + "number": "3", + "icoX": 6, + "cls": 128, + "prodCtx": { + "name": "U 3", + "num": "3033", + "line": "3", + "matchId": "3", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_3::*", + "name": "U 3", + "nameS": "U 3", + "number": "3", + "icoX": 6, + "cls": 128, + "prodCtx": { + "name": "U 3", + "num": "3033", + "line": "3", + "lineId": "7_swm001_3", + "matchId": "3", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_53::*", + "name": "53", + "nameS": "53", + "number": "53", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": " 53", + "num": "23900", + "line": "53", + "matchId": "53", + "catOut": "Bus", + "catOutS": "Bus", + "catOutL": "Bus", + "catIn": "Bus", + "catCode": "5", + "admin": "swm003" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_53::*", + "name": "53", + "nameS": "53", + "number": "53", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": " 53", + "num": "23900", + "line": "53", + "lineId": "5_swm003_53", + "matchId": "53", + "catOut": "Bus", + "catOutS": "Bus", + "catOutL": "Bus", + "catIn": "Bus", + "catCode": "5", + "admin": "swm003" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_7::*", + "name": "S 7", + "nameS": "S 7", + "number": "7", + "icoX": 2, + "cls": 16, + "oprX": 0, + "prodCtx": { + "name": "S 7", + "num": "6745", + "line": "7", + "matchId": "7", + "catOut": "S", + "catOutS": "s", + "catOutL": "S-Bahn", + "catIn": "s", + "catCode": "4", + "admin": "800725" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1184673", + "RIS_HIM_FREETEXT_1186308" + ] + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15820", + "line": "28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_7::*", + "name": "S 7", + "nameS": "S 7", + "number": "7", + "icoX": 2, + "cls": 16, + "oprX": 0, + "prodCtx": { + "name": "S 7", + "num": "6745", + "line": "7", + "lineId": "4_800725_7", + "matchId": "7", + "catOut": "S", + "catOutS": "s", + "catOutL": "S-Bahn", + "catIn": "s", + "catCode": "4", + "admin": "800725" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1184673", + "RIS_HIM_FREETEXT_1186308" + ] + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_54::*", + "name": "54", + "nameS": "54", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "54", + "line": "54", + "lineId": "5_swm003_54", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_130::*", + "name": "130", + "nameS": "130", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "130", + "line": "130", + "lineId": "5_swm003_130", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_132::*", + "name": "132", + "nameS": "132", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "132", + "line": "132", + "lineId": "5_swm003_132", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_N40::*", + "name": "N40", + "nameS": "N40", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "N40", + "line": "N40", + "lineId": "5_swm003_N40", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm_18_X30::*", + "name": "X30", + "nameS": "X30", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "X30", + "line": "X30", + "lineId": "5_swm_18_X30", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_6::*", + "name": "U 6", + "nameS": "U 6", + "icoX": 15, + "cls": 128, + "prodCtx": { + "name": "U 6", + "line": "6", + "lineId": "7_swm001_6", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_6::*", + "name": "U 6", + "nameS": "U 6", + "number": "6", + "icoX": 15, + "cls": 128, + "prodCtx": { + "name": "U 6", + "num": "5819", + "line": "6", + "matchId": "6", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_6::*", + "name": "U 6", + "nameS": "U 6", + "number": "6", + "icoX": 15, + "cls": 128, + "prodCtx": { + "name": "U 6", + "num": "5819", + "line": "6", + "lineId": "7_swm001_6", + "matchId": "6", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_52::*", + "name": "52", + "nameS": "52", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "52", + "line": "52", + "lineId": "5_swm003_52", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_62::*", + "name": "62", + "nameS": "62", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "62", + "line": "62", + "lineId": "5_swm003_62", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_N45::*", + "name": "N45", + "nameS": "N45", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "N45", + "line": "N45", + "lineId": "5_swm003_N45", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_1::*", + "name": "U 1", + "nameS": "U 1", + "icoX": 16, + "cls": 128, + "prodCtx": { + "name": "U 1", + "line": "1", + "lineId": "7_swm001_1", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_2::*", + "name": "U 2", + "nameS": "U 2", + "icoX": 10, + "cls": 128, + "prodCtx": { + "name": "U 2", + "line": "2", + "lineId": "7_swm001_2", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_7::*", + "name": "U 7", + "nameS": "U 7", + "icoX": 16, + "cls": 128, + "prodCtx": { + "name": "U 7", + "line": "7", + "lineId": "7_swm001_7", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_8::*", + "name": "U 8", + "nameS": "U 8", + "icoX": 17, + "cls": 128, + "prodCtx": { + "name": "U 8", + "line": "8", + "lineId": "7_swm001_8", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_16::*", + "name": "16", + "nameS": "16", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "16", + "line": "16", + "lineId": "8_swm002_16", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_17!!1286563!!5355141::*", + "name": "17", + "nameS": "17", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "17", + "line": "17", + "lineId": "8_swm002_17!!1286563!!5355141", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_18::*", + "name": "18", + "nameS": "18", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "18", + "line": "18", + "lineId": "8_swm002_18", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_27::*", + "name": "27", + "nameS": "27", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "27", + "line": "27", + "lineId": "8_swm002_27", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_29::*", + "name": "29", + "nameS": "29", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "29", + "line": "29", + "lineId": "8_swm002_29", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_31::*", + "name": "31", + "nameS": "31", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "31", + "line": "31", + "lineId": "8_swm002_31", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_37::*", + "name": "37", + "nameS": "37", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "37", + "line": "37", + "lineId": "8_swm002_37", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_N17::*", + "name": "N17", + "nameS": "N17", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "N17", + "line": "N17", + "lineId": "8_swm002_N17", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_N19::*", + "name": "N19", + "nameS": "N19", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "N19", + "line": "N19", + "lineId": "8_swm002_N19", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_N20::*", + "name": "N20", + "nameS": "N20", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "N20", + "line": "N20", + "lineId": "8_swm002_N20", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_N27::*", + "name": "N27", + "nameS": "N27", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "N27", + "line": "N27", + "lineId": "8_swm002_N27", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_SEVU2::*", + "name": "SEVU2", + "nameS": "SEVU2", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "SEVU2", + "line": "SEVU2", + "lineId": "8_swm002_SEVU2", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_29::*", + "name": "29", + "nameS": "29", + "number": "29", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 29", + "num": "16282", + "line": "29", + "matchId": "29", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "name": "S", + "nameS": "S", + "icoX": 18, + "cls": 16, + "prodCtx": { + "name": "S ", + "line": "", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + } + }, + { + "pid": "L::4::S::B0016128115::4_800725_1::*", + "name": "S 1", + "nameS": "S 1", + "icoX": 19, + "cls": 16, + "prodCtx": { + "name": "S 1", + "line": "1", + "lineId": "4_800725_1", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1184948", + "RIS_HIM_FREETEXT_1184954" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_2::*", + "name": "S 2", + "nameS": "S 2", + "icoX": 20, + "cls": 16, + "prodCtx": { + "name": "S 2", + "line": "2", + "lineId": "4_800725_2", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1159178", + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1179628", + "RIS_HIM_FREETEXT_1186304" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_4::*", + "name": "S 4", + "nameS": "S 4", + "icoX": 21, + "cls": 16, + "prodCtx": { + "name": "S 4", + "line": "4", + "lineId": "4_800725_4", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1183479", + "RIS_HIM_FREETEXT_1185509", + "RIS_HIM_FREETEXT_1179628" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_6::*", + "name": "S 6", + "nameS": "S 6", + "icoX": 22, + "cls": 16, + "prodCtx": { + "name": "S 6", + "line": "6", + "lineId": "4_800725_6", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1159180", + "RIS_HIM_FREETEXT_1163468", + "RIS_HIM_FREETEXT_1163469", + "RIS_HIM_FREETEXT_1174654", + "RIS_HIM_FREETEXT_1175966", + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1183480", + "RIS_HIM_FREETEXT_1179628", + "RIS_HIM_FREETEXT_1186299" + ] + }, + { + "pid": "L::4::S::B0016128115::4_800725_8::*", + "name": "S 8", + "nameS": "S 8", + "icoX": 23, + "cls": 16, + "prodCtx": { + "name": "S 8", + "line": "8", + "lineId": "4_800725_8", + "catOut": "S ", + "catOutS": "s", + "catOutL": "S-Bahn" + }, + "himIdL": [ + "RIS_HIM_FREETEXT_1138462", + "RIS_HIM_FREETEXT_1150260", + "RIS_HIM_FREETEXT_1159169", + "RIS_HIM_FREETEXT_1159171", + "RIS_HIM_FREETEXT_1159175", + "RIS_HIM_FREETEXT_1159181", + "RIS_HIM_FREETEXT_1159182", + "RIS_HIM_FREETEXT_1159195", + "RIS_HIM_FREETEXT_1159199", + "RIS_HIM_FREETEXT_1159203", + "RIS_HIM_FREETEXT_1159274", + "RIS_HIM_FREETEXT_1159288", + "RIS_HIM_FREETEXT_1159291", + "RIS_HIM_FREETEXT_1159293", + "RIS_HIM_FREETEXT_1172180", + "RIS_HIM_FREETEXT_1179605", + "RIS_HIM_FREETEXT_1179600", + "RIS_HIM_FREETEXT_1179608", + "RIS_HIM_FREETEXT_1179607", + "RIS_HIM_FREETEXT_1179602", + "RIS_HIM_FREETEXT_1179599", + "RIS_HIM_FREETEXT_1184942", + "RIS_HIM_FREETEXT_1179628", + "RIS_HIM_FREETEXT_1186299" + ] + }, + { + "pid": "L::5::Bus::B1146449194::5_swm_12_717::*", + "name": "717", + "nameS": "717", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "717", + "line": "717", + "lineId": "5_swm_12_717", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm_12_720::*", + "name": "720", + "nameS": "720", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "720", + "line": "720", + "lineId": "5_swm_12_720", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_4::*", + "name": "U 4", + "nameS": "U 4", + "icoX": 9, + "cls": 128, + "prodCtx": { + "name": "U 4", + "line": "4", + "lineId": "7_swm001_4", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_5::*", + "name": "U 5", + "nameS": "U 5", + "icoX": 24, + "cls": 128, + "prodCtx": { + "name": "U 5", + "line": "5", + "lineId": "7_swm001_5", + "catOut": "U ", + "catOutS": "U", + "catOutL": "U-Bahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_19::*", + "name": "19", + "nameS": "19", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "19", + "line": "19", + "lineId": "8_swm002_19", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_20::*", + "name": "20", + "nameS": "20", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "20", + "line": "20", + "lineId": "8_swm002_20", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_21::*", + "name": "21", + "nameS": "21", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "21", + "line": "21", + "lineId": "8_swm002_21", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_39::*", + "name": "39", + "nameS": "39", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "39", + "line": "39", + "lineId": "8_swm002_39", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_N39::*", + "name": "N39", + "nameS": "N39", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "N39", + "line": "N39", + "lineId": "8_swm002_N39", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_29::*", + "name": "29", + "nameS": "29", + "number": "29", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 29", + "num": "16282", + "line": "29", + "lineId": "8_swm002_29", + "matchId": "29", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15820", + "line": "28", + "lineId": "8_swm002_28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15696", + "line": "28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "name": "ECE", + "icoX": 25, + "cls": 1, + "prodCtx": { + "name": "ECE ", + "line": "", + "catOut": "ECE ", + "catOutS": "ECE", + "catOutL": "Eurocity-Express" + } + }, + { + "name": "ICE", + "icoX": 25, + "cls": 1, + "prodCtx": { + "name": "ICE ", + "line": "", + "catOut": "ICE ", + "catOutS": "ICE", + "catOutL": "Intercity-Express" + } + }, + { + "name": "RJ", + "icoX": 25, + "cls": 1, + "prodCtx": { + "name": "RJ ", + "line": "", + "catOut": "RJ ", + "catOutS": "RJ", + "catOutL": "railjet" + } + }, + { + "name": "RJX", + "icoX": 25, + "cls": 1, + "prodCtx": { + "name": "RJX ", + "line": "", + "catOut": "RJX ", + "catOutS": "RJX", + "catOutL": "railjet xpress" + } + }, + { + "name": "TGV", + "icoX": 25, + "cls": 1, + "prodCtx": { + "name": "TGV ", + "line": "", + "catOut": "TGV ", + "catOutS": "RHT", + "catOutL": "TGV INOUI" + } + }, + { + "name": "EC", + "icoX": 26, + "cls": 2, + "prodCtx": { + "name": "EC ", + "line": "", + "catOut": "EC ", + "catOutS": "EC", + "catOutL": "Eurocity" + } + }, + { + "name": "IC", + "icoX": 26, + "cls": 2, + "prodCtx": { + "name": "IC ", + "line": "", + "catOut": "IC ", + "catOutS": "IC", + "catOutL": "Intercity" + } + }, + { + "name": "NJ", + "icoX": 26, + "cls": 2, + "prodCtx": { + "name": "NJ ", + "line": "", + "catOut": "NJ ", + "catOutS": "NJ", + "catOutL": "Nightjet" + } + }, + { + "name": "EN", + "icoX": 27, + "cls": 4, + "prodCtx": { + "name": "EN ", + "line": "", + "catOut": "EN ", + "catOutS": "EN", + "catOutL": "EuroNight" + } + }, + { + "name": "ALX", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "ALX", + "line": "", + "catOut": "DPN ", + "catOutS": "DPN", + "catOutL": "Nahreisezug" + } + }, + { + "name": "RB", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "RB ", + "line": "", + "catOut": "RB ", + "catOutS": "RB", + "catOutL": "Regionalbahn" + } + }, + { + "name": "RE", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "RE ", + "line": "", + "catOut": "RE ", + "catOutS": "RE", + "catOutL": "Regional-Express" + } + }, + { + "pid": "L::3::Bus::B0723754675::3_A8N____SEV::*", + "name": "Bus SEV", + "nameS": "SEV", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "Bus SEV", + "line": "SEV", + "lineId": "3_A8N____SEV", + "catOut": "Bus ", + "catOutS": "Bsv", + "catOutL": "SEV-Bus" + } + }, + { + "pid": "L::3::Bus::B1146449194::3_B7_____SEV::*", + "name": "Bus SEV", + "nameS": "SEV", + "icoX": 0, + "cls": 8, + "prodCtx": { + "name": "Bus SEV", + "line": "SEV", + "lineId": "3_B7_____SEV", + "catOut": "Bus ", + "catOutS": "Bsv", + "catOutL": "SEV-Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_58::*", + "name": "58", + "nameS": "58", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "58", + "line": "58", + "lineId": "5_swm003_58", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_68::*", + "name": "68", + "nameS": "68", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "68", + "line": "68", + "lineId": "5_swm003_68", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_100::*", + "name": "100", + "nameS": "100", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "100", + "line": "100", + "lineId": "5_swm003_100", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_mvvEBU_LHMUC::*", + "name": "LHMUC", + "nameS": "LHMUC", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "LHMUC", + "line": "LHMUC", + "lineId": "5_mvvEBU_LHMUC", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm_18_X98::*", + "name": "X98", + "nameS": "X98", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "X98", + "line": "X98", + "lineId": "5_swm_18_X98", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_17!!1285889!!5355225::*", + "name": "17", + "nameS": "17", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": "17", + "line": "17", + "lineId": "8_swm002_17!!1285889!!5355225", + "catOut": "STR ", + "catOutS": "STR", + "catOutL": "Straenbahn" + } + }, + { + "pid": "L::9::AST::B0723754675::9_A8N____SEV::*", + "name": "AST SEV", + "nameS": "SEV", + "icoX": 28, + "cls": 512, + "prodCtx": { + "name": "AST SEV", + "line": "SEV", + "lineId": "9_A8N____SEV", + "catOut": "AST ", + "catOutS": "ast", + "catOutL": "Anruf-Sammel-Taxi" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_2::*", + "name": "U 2", + "nameS": "U 2", + "number": "2", + "icoX": 10, + "cls": 128, + "prodCtx": { + "name": "U 2", + "num": "2062", + "line": "2", + "matchId": "2", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_140::*", + "name": "140", + "nameS": "140", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "140", + "line": "140", + "lineId": "5_swm003_140", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_141::*", + "name": "141", + "nameS": "141", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "141", + "line": "141", + "lineId": "5_swm003_141", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_142::*", + "name": "142", + "nameS": "142", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "142", + "line": "142", + "lineId": "5_swm003_142", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm003_144::*", + "name": "144", + "nameS": "144", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "144", + "line": "144", + "lineId": "5_swm003_144", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::5::Bus::B1146449194::5_swm_12_U3::*", + "name": "U3", + "nameS": "U3", + "icoX": 5, + "cls": 32, + "prodCtx": { + "name": "U3", + "line": "U3", + "lineId": "5_swm_12_U3", + "catOut": "Bus ", + "catOutS": "Bus", + "catOutL": "Bus" + } + }, + { + "pid": "L::7::U::B1146449194::7_swm001_2::*", + "name": "U 2", + "nameS": "U 2", + "number": "2", + "icoX": 10, + "cls": 128, + "prodCtx": { + "name": "U 2", + "num": "2062", + "line": "2", + "lineId": "7_swm001_2", + "matchId": "2", + "catOut": "U", + "catOutS": "U", + "catOutL": "U-Bahn", + "catIn": "U", + "catCode": "7", + "admin": "swm001" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15696", + "line": "28", + "lineId": "8_swm002_28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15821", + "line": "28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + }, + { + "pid": "L::8::STR::B1146449194::8_swm002_28::*", + "name": "28", + "nameS": "28", + "number": "28", + "icoX": 4, + "cls": 256, + "prodCtx": { + "name": " 28", + "num": "15821", + "line": "28", + "lineId": "8_swm002_28", + "matchId": "28", + "catOut": "STR", + "catOutS": "STR", + "catOutL": "Straenbahn", + "catIn": "STR", + "catCode": "8", + "admin": "swm002" + } + } + ], + "polyL": [], + "layerL": [ + { + "id": "standard", + "name": "standard", + "index": 0, + "annoCnt": 0 + } + ], + "crdSysL": [ + { + "id": "standard", + "index": 0, + "type": "WGS84" + } + ], + "opL": [ + { + "name": "DB Regio AG Bayern", + "icoX": 11 + } + ], + "remL": [ + { + "type": "A", + "code": "PB", + "prio": 200, + "icoX": 12, + "txtN": "Obligation to cover nose and mouth" + }, + { + "type": "A", + "code": "FB", + "prio": 260, + "icoX": 13, + "txtN": "Number of bicycles conveyed limited" + }, + { + "type": "A", + "code": "FS", + "prio": 260, + "icoX": 12, + "txtN": "conveying bicycles: mind the excluded times" + }, + { + "type": "A", + "code": "K2", + "prio": 300, + "icoX": 14, + "txtN": "2nd class only" + }, + { + "type": "A", + "code": "XK", + "prio": 100, + "icoX": 12, + "txtN": "walking distance 500 m" + } + ], + "icoL": [ + { + "res": "prod_reg", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 89, + "g": 87, + "b": 87 + } + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 148, + "g": 27, + "b": 128 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 136, + "g": 46, + "b": 35 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 233, + "g": 81, + "b": 109 + }, + "shp": "C" + }, + { + "res": "prod_tram_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 227, + "g": 6, + "b": 19 + } + }, + { + "res": "prod_bus", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 0, + "g": 93, + "b": 137 + } + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 237, + "g": 114, + "b": 3 + } + }, + { + "res": "prod_walk", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 255, + "g": 204, + "b": 17 + } + }, + { + "res": "STA" + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 0, + "g": 168, + "b": 131 + } + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 193, + "g": 8, + "b": 48 + } + }, + { + "res": "RE", + "txt": "DB Regio AG Bayern" + }, + { + "res": "attr_info" + }, + { + "res": "attr_bike" + }, + { + "res": "attr_2nd" + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 0, + "g": 101, + "b": 173 + } + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 82, + "g": 129, + "b": 46 + } + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 187, + "g": 14, + "b": 38 + } + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 76, + "g": 144, + "b": 70 + } + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 18, + "g": 185, + "b": 230 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 118, + "g": 183, + "b": 42 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 226, + "g": 5, + "b": 27 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 0, + "g": 140, + "b": 88 + }, + "shp": "C" + }, + { + "res": "prod_comm_t", + "fg": { + "r": 255, + "g": 203, + "b": 0 + }, + "bg": { + "r": 29, + "g": 29, + "b": 27 + }, + "shp": "C" + }, + { + "res": "prod_sub_t", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 187, + "g": 122, + "b": 0 + } + }, + { + "res": "prod_ice", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 89, + "g": 87, + "b": 87 + } + }, + { + "res": "prod_ic", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 89, + "g": 87, + "b": 87 + } + }, + { + "res": "prod_gen", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 89, + "g": 87, + "b": 87 + } + }, + { + "res": "prod_taxi", + "fg": { + "r": 255, + "g": 255, + "b": 255 + }, + "bg": { + "r": 255, + "g": 203, + "b": 20 + } + }, + { + "res": "pt_only" + } + ] + }, + "outConL": [ + { + "cid": "C-0", + "date": "20201116", + "dur": "003700", + "chg": 0, + "sDays": { + "sDaysR": "runs 15. Nov until 12. Dec 2020 ", + "sDaysB": "FF0000000000000000000000000000000000000000000000000000000000000000000000000000003FFFFFFFFFF0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "100100", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "100100", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 2, + "aOutR": true, + "aTimeS": "101600", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 1201, + "durS": "001500", + "ctx": "G|1|G@F|A=1@O=München-Mittersendling@X=11536351@Y=48107823@U=80@L=8004154@|A=1@O=Thalkirchen (Tierpark), München@X=11546015@Y=48102708@U=80@L=625236@|16112020|100100|101600|bf|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 6, + "dep": { + "locX": 2, + "idx": 6, + "dProdX": 11, + "dInR": true, + "dTimeS": "101600", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 4, + "idx": 17, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|24525|9|80|16112020", + "prodX": 12, + "dirTxt": "Moosach, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 2, + "idx": 6, + "dProdX": 12, + "dInR": true, + "dTimeS": "101600", + "dDirTxt": "Moosach, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 6, + "idx": 7, + "aProdX": 12, + "aOutR": true, + "aTimeS": "101800", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "101800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 8, + "idx": 8, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102000", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 10, + "idx": 9, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102100", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 11, + "idx": 10, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 12, + "idx": 11, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102400", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 13, + "idx": 12, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 15, + "idx": 13, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 17, + "idx": 14, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102900", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 19, + "idx": 15, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "103000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 21, + "idx": 16, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "103100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 4, + "idx": 17, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161016$202011161033$U 3$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 12, + "fLocX": 2, + "tLocX": 4, + "fIdx": 6, + "tIdx": 17 + } + ] + }, + "minChg": "000500" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 4, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 353, + "durS": "000500", + "ctx": "G|1|G@F|A=1@O=Bonner Platz, München@X=11578151@Y=48166702@U=80@L=624333@|A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@|16112020|103300|103800|fb|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + } + ], + "ctxRecon": "¶HKI¶G@F$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$202011161001$202011161016$$$1$$$§T$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161016$202011161033$U 3$$1$$$§G@F$A=1@O=Bonner Platz, München@L=624333@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161033$202011161038$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§", + "freq": { + "minC": 10 + }, + "conSubscr": "N", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "calcDate": "20201115", + "locMode": "FROM_START", + "reqMode": "UNKNOWN", + "calcTime": "143055" + }, + "cksum": "70d844fe_3", + "cksumDti": "15d623ad_3" + }, + { + "cid": "C-1", + "date": "20201116", + "dur": "005900", + "chg": 0, + "sDays": { + "sDaysR": "runs 16. Nov until 12. Dec 2020 Mo - Sa ", + "sDaysB": "7E8DB9F7EFDFBF7EFDFBF7EFDFBF7A7DFBD7EFDDBF3EEDFBF7EFDFBF7EFDF3F7EFDFBF7EF9FBF7EFDFBF7EFDFBF0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "100200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "110100", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "100200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 22, + "aOutR": true, + "aTimeS": "100800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 430, + "durS": "000600", + "ctx": "G|1|G@F|A=1@O=München-Mittersendling@X=11536351@Y=48107823@U=80@L=8004154@|A=1@O=Adunistraße, München@X=11534356@Y=48109297@U=80@L=790090@|16112020|100200|100800|bf|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 5, + "dep": { + "locX": 22, + "idx": 6, + "dProdX": 15, + "dInR": true, + "dTimeS": "100800", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 23, + "idx": 33, + "aProdX": 15, + "aOutR": true, + "aTimeS": "105200", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|23698|14|80|16112020", + "prodX": 18, + "dirTxt": "Münchner Freiheit, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 22, + "idx": 6, + "dProdX": 18, + "dInR": true, + "dTimeS": "100800", + "dDirTxt": "Münchner Freiheit, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 24, + "idx": 7, + "aProdX": 18, + "aOutR": true, + "aTimeS": "101000", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "101000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 26, + "idx": 8, + "aProdX": 18, + "aOutR": true, + "aTimeS": "101200", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "101400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 28, + "idx": 9, + "aProdX": 18, + "aOutR": true, + "aTimeS": "101600", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "101600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 30, + "idx": 10, + "aProdX": 18, + "aOutR": true, + "aTimeS": "101700", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "101700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 32, + "idx": 11, + "aProdX": 18, + "aOutR": true, + "aTimeS": "101900", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "101900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 34, + "idx": 12, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102100", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 35, + "idx": 13, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 36, + "idx": 14, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102300", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 38, + "idx": 15, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102400", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 40, + "idx": 16, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102500", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102500", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 42, + "idx": 17, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 43, + "idx": 18, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 44, + "idx": 19, + "aProdX": 18, + "aOutR": true, + "aTimeS": "102900", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "102900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 46, + "idx": 20, + "aProdX": 18, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "103100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 48, + "idx": 21, + "aProdX": 18, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 49, + "idx": 22, + "aProdX": 18, + "aOutR": true, + "aTimeS": "103400", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "103400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 50, + "idx": 23, + "aProdX": 18, + "aOutR": true, + "aTimeS": "103600", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "103600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 52, + "idx": 24, + "aProdX": 18, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "103800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 54, + "idx": 25, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104000", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 55, + "idx": 26, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104100", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 57, + "idx": 27, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 58, + "idx": 28, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104400", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 59, + "idx": 29, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104500", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104500", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 61, + "idx": 30, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104700", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 63, + "idx": 31, + "aProdX": 18, + "aOutR": true, + "aTimeS": "104800", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "104800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 65, + "idx": 32, + "aProdX": 18, + "aOutR": true, + "aTimeS": "105000", + "aTZOffset": 60, + "dProdX": 18, + "dInR": true, + "dTimeS": "105000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 23, + "idx": 33, + "aProdX": 18, + "aOutR": true, + "aTimeS": "105200", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Adunistraße, München@L=790090@a=128@$A=1@O=Pündterplatz, München@L=622912@a=128@$202011161008$202011161052$ 53$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 18, + "fLocX": 22, + "tLocX": 23, + "fIdx": 6, + "tIdx": 33 + } + ] + }, + "minChg": "000900" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 23, + "dInR": true, + "dTimeS": "105200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "110100", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 659, + "durS": "000900", + "ctx": "G|1|G@F|A=1@O=Pündterplatz, München@X=11576866@Y=48162603@U=80@L=622912@|A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@|16112020|105200|110100|fb|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + } + ], + "ctxRecon": "¶HKI¶G@F$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=Adunistraße, München@L=790090@a=128@$202011161002$202011161008$$$1$$$§T$A=1@O=Adunistraße, München@L=790090@a=128@$A=1@O=Pündterplatz, München@L=622912@a=128@$202011161008$202011161052$ 53$$1$$$§G@F$A=1@O=Pündterplatz, München@L=622912@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161052$202011161101$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§", + "freq": { + "minC": 10 + }, + "conSubscr": "N", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "calcDate": "20201115", + "locMode": "FROM_START", + "reqMode": "UNKNOWN", + "calcTime": "143055" + }, + "cksum": "43edeca7_3", + "cksumDti": "59cf890b_3" + }, + { + "cid": "C-2", + "date": "20201116", + "dur": "003400", + "chg": 1, + "sDays": { + "sDaysR": "runs 15. Nov until 12. Dec 2020 ", + "sDaysB": "FF0000000000000000000000000000000000000000000000000000000000000000000000000000003FFFFFFFFFF0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "idx": 20, + "dProdX": 19, + "dPlatfS": "2", + "dInR": true, + "dTimeS": "100400", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "JNY", + "icoX": 2, + "dep": { + "locX": 0, + "idx": 20, + "dProdX": 19, + "dPlatfS": "2", + "dInR": true, + "dTimeS": "100400", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 67, + "idx": 21, + "aProdX": 19, + "aPlatfS": "2", + "aOutR": true, + "aTimeS": "100500", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|9612|1|80|16112020", + "prodX": 22, + "dirTxt": "Höllriegelskreuth", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 0, + "idx": 20, + "dProdX": 22, + "dPlatfS": "2", + "dInR": true, + "dTimeS": "100400", + "dDirTxt": "Höllriegelskreuth", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 67, + "idx": 21, + "aProdX": 22, + "aPlatfS": "2", + "aOutR": true, + "aTimeS": "100500", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 20, + "maxC": 20, + "numC": 7 + }, + "ctxRecon": "T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Siemenswerke@L=8004137@a=128@$202011161004$202011161005$S 7$$1$$$", + "msgL": [ + { + "type": "REM", + "remX": 0, + "fLocX": 0, + "tLocX": 67, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1126170624 + }, + { + "type": "REM", + "remX": 1, + "fLocX": 0, + "tLocX": 67, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 2, + "fLocX": 0, + "tLocX": 67, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 3, + "fLocX": 0, + "tLocX": 67, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1152385024 + } + ], + "chRatingSoll": 2, + "subscr": "F", + "chgDurR": 10, + "prodL": [ + { + "prodX": 22, + "fLocX": 0, + "tLocX": 67, + "fIdx": 20, + "tIdx": 21 + } + ] + }, + "minChg": "001000" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 67, + "dInR": true, + "dTimeS": "100500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 68, + "aOutR": true, + "aTimeS": "101500", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 500, + "durS": "001000", + "dirGeo": 6, + "ctx": "H|1|W$A=1@O=München Siemenswerke@L=8004137@a=128@$A=1@O=Obersendling, München@L=625016@a=128@$202011161005$202011161015$$$1$$$", + "gisPrvr": "H", + "msgL": [ + { + "type": "REM", + "remX": 4, + "tagL": [ + "RES_JNY_DTL_H2" + ], + "sort": 1099956224 + } + ], + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 6, + "dep": { + "locX": 68, + "idx": 5, + "dProdX": 11, + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 4, + "idx": 17, + "aProdX": 11, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|24525|9|80|16112020", + "prodX": 12, + "dirTxt": "Moosach, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 68, + "idx": 5, + "dProdX": 12, + "dInR": true, + "dTimeS": "101500", + "dDirTxt": "Moosach, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 2, + "idx": 6, + "aProdX": 12, + "aOutR": true, + "aTimeS": "101600", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "101600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 6, + "idx": 7, + "aProdX": 12, + "aOutR": true, + "aTimeS": "101800", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "101800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 8, + "idx": 8, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102000", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 10, + "idx": 9, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102100", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 11, + "idx": 10, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 12, + "idx": 11, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102400", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 13, + "idx": 12, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 15, + "idx": 13, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 17, + "idx": 14, + "aProdX": 12, + "aOutR": true, + "aTimeS": "102900", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "102900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 19, + "idx": 15, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "103000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 21, + "idx": 16, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "dProdX": 12, + "dInR": true, + "dTimeS": "103100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 4, + "idx": 17, + "aProdX": 12, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Obersendling, München@L=625016@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161015$202011161033$U 3$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 12, + "fLocX": 68, + "tLocX": 4, + "fIdx": 5, + "tIdx": 17 + } + ] + }, + "minChg": "000500" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 4, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 353, + "durS": "000500", + "ctx": "G|1|G@F|A=1@O=Bonner Platz, München@X=11578151@Y=48166702@U=80@L=624333@|A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@|16112020|103300|103800|fb|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + } + ], + "ctxRecon": "¶HKI¶T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Siemenswerke@L=8004137@a=128@$202011161004$202011161005$S 7$$1$$$§W$A=1@O=München Siemenswerke@L=8004137@a=128@$A=1@O=Obersendling, München@L=625016@a=128@$202011161005$202011161015$$$1$$$§T$A=1@O=Obersendling, München@L=625016@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161015$202011161033$U 3$$1$$$§G@F$A=1@O=Bonner Platz, München@L=624333@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161033$202011161038$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§", + "freq": { + "minC": 20 + }, + "conSubscr": "P", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "cnLocX": 0, + "calcDate": "20201115", + "jid": "1|9612|1|80|-1", + "locMode": "FROM_START", + "pLocX": 0, + "reqMode": "UNKNOWN", + "sectX": 0, + "calcTime": "143055" + }, + "cksum": "88112d2f_3", + "cksumDti": "f76189b5_3" + }, + { + "cid": "C-3", + "date": "20201116", + "dur": "003700", + "chg": 0, + "sDays": { + "sDaysR": "runs 15. Nov until 12. Dec 2020 ", + "sDaysB": "FF0000000000000000000000000000000000000000000000000000000000000000000000000000003FFFFFFFFFF0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "101100", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "104800", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "101100", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 2, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 1201, + "durS": "001500", + "ctx": "G|1|G@F|A=1@O=München-Mittersendling@X=11536351@Y=48107823@U=80@L=8004154@|A=1@O=Thalkirchen (Tierpark), München@X=11546015@Y=48102708@U=80@L=625236@|16112020|101100|102600|bf|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 6, + "dep": { + "locX": 2, + "idx": 6, + "dProdX": 24, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 4, + "idx": 17, + "aProdX": 24, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|24525|10|80|16112020", + "prodX": 25, + "dirTxt": "Moosach, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 2, + "idx": 6, + "dProdX": 25, + "dInR": true, + "dTimeS": "102600", + "dDirTxt": "Moosach, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 6, + "idx": 7, + "aProdX": 25, + "aOutR": true, + "aTimeS": "102800", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "102800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 8, + "idx": 8, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 10, + "idx": 9, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 11, + "idx": 10, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103200", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 12, + "idx": 11, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103400", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 13, + "idx": 12, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103600", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 15, + "idx": 13, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103700", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 17, + "idx": 14, + "aProdX": 25, + "aOutR": true, + "aTimeS": "103900", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "103900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 19, + "idx": 15, + "aProdX": 25, + "aOutR": true, + "aTimeS": "104000", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "104000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 21, + "idx": 16, + "aProdX": 25, + "aOutR": true, + "aTimeS": "104100", + "aTZOffset": 60, + "dProdX": 25, + "dInR": true, + "dTimeS": "104100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 4, + "idx": 17, + "aProdX": 25, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161026$202011161043$U 3$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 25, + "fLocX": 2, + "tLocX": 4, + "fIdx": 6, + "tIdx": 17 + } + ] + }, + "minChg": "000500" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 4, + "dInR": true, + "dTimeS": "104300", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "104800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 353, + "durS": "000500", + "ctx": "G|1|G@F|A=1@O=Bonner Platz, München@X=11578151@Y=48166702@U=80@L=624333@|A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@|16112020|104300|104800|fb|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + } + ], + "ctxRecon": "¶HKI¶G@F$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$202011161011$202011161026$$$1$$$§T$A=1@O=Thalkirchen (Tierpark), München@L=625236@a=128@$A=1@O=Bonner Platz, München@L=624333@a=128@$202011161026$202011161043$U 3$$1$$$§G@F$A=1@O=Bonner Platz, München@L=624333@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161043$202011161048$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§", + "freq": { + "minC": 10 + }, + "conSubscr": "N", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "calcDate": "20201115", + "locMode": "FROM_START", + "reqMode": "UNKNOWN", + "calcTime": "143055" + }, + "cksum": "e409aaf9_3", + "cksumDti": "d4ad4942_3" + }, + { + "cid": "C-4", + "date": "20201116", + "dur": "005900", + "chg": 0, + "sDays": { + "sDaysR": "runs 16. Nov until 12. Dec 2020 Mo - Sa ", + "sDaysB": "7E8DB9F7EFDFBF7EFDFBF7EFDFBF7A7DFBD7EFDDBF3EEDFBF7EFDFBF7EFDF3F7EFDFBF7EF9FBF7EFDFBF7EFDFBF0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "101200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "111100", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 0, + "dInR": true, + "dTimeS": "101200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 22, + "aOutR": true, + "aTimeS": "101800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 430, + "durS": "000600", + "ctx": "G|1|G@F|A=1@O=München-Mittersendling@X=11536351@Y=48107823@U=80@L=8004154@|A=1@O=Adunistraße, München@X=11534356@Y=48109297@U=80@L=790090@|16112020|101200|101800|bf|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 5, + "dep": { + "locX": 22, + "idx": 6, + "dProdX": 26, + "dInR": true, + "dTimeS": "101800", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 23, + "idx": 33, + "aProdX": 26, + "aOutR": true, + "aTimeS": "110200", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|23698|15|80|16112020", + "prodX": 27, + "dirTxt": "Münchner Freiheit, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 22, + "idx": 6, + "dProdX": 27, + "dInR": true, + "dTimeS": "101800", + "dDirTxt": "Münchner Freiheit, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 24, + "idx": 7, + "aProdX": 27, + "aOutR": true, + "aTimeS": "102000", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "102000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 26, + "idx": 8, + "aProdX": 27, + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 28, + "idx": 9, + "aProdX": 27, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 30, + "idx": 10, + "aProdX": 27, + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 32, + "idx": 11, + "aProdX": 27, + "aOutR": true, + "aTimeS": "102900", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "102900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 34, + "idx": 12, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 35, + "idx": 13, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103200", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 36, + "idx": 14, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 38, + "idx": 15, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103400", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 40, + "idx": 16, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103500", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103500", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 42, + "idx": 17, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103600", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 43, + "idx": 18, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103700", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 44, + "idx": 19, + "aProdX": 27, + "aOutR": true, + "aTimeS": "103900", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "103900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 46, + "idx": 20, + "aProdX": 27, + "aOutR": true, + "aTimeS": "104100", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "104100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 48, + "idx": 21, + "aProdX": 27, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "104300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 49, + "idx": 22, + "aProdX": 27, + "aOutR": true, + "aTimeS": "104400", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "104400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 50, + "idx": 23, + "aProdX": 27, + "aOutR": true, + "aTimeS": "104600", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "104600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 52, + "idx": 24, + "aProdX": 27, + "aOutR": true, + "aTimeS": "104800", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "104800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 54, + "idx": 25, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105000", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 55, + "idx": 26, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105100", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 57, + "idx": 27, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105300", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 58, + "idx": 28, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105400", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 59, + "idx": 29, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105500", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105500", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 61, + "idx": 30, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105700", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 63, + "idx": 31, + "aProdX": 27, + "aOutR": true, + "aTimeS": "105800", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "105800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 65, + "idx": 32, + "aProdX": 27, + "aOutR": true, + "aTimeS": "110000", + "aTZOffset": 60, + "dProdX": 27, + "dInR": true, + "dTimeS": "110000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 23, + "idx": 33, + "aProdX": 27, + "aOutR": true, + "aTimeS": "110200", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Adunistraße, München@L=790090@a=128@$A=1@O=Pündterplatz, München@L=622912@a=128@$202011161018$202011161102$ 53$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 27, + "fLocX": 22, + "tLocX": 23, + "fIdx": 6, + "tIdx": 33 + } + ] + }, + "minChg": "000900" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 23, + "dInR": true, + "dTimeS": "110200", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 1, + "aOutR": true, + "aTimeS": "111100", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 659, + "durS": "000900", + "ctx": "G|1|G@F|A=1@O=Pündterplatz, München@X=11576866@Y=48162603@U=80@L=622912@|A=1@O=Karl-Theodor-Straße, München@X=11574043@Y=48166918@U=80@L=621790@|16112020|110200|111100|fb|ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§|", + "gisPrvr": "E", + "getDescr": true, + "getPoly": true + } + } + ], + "ctxRecon": "¶HKI¶G@F$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=Adunistraße, München@L=790090@a=128@$202011161012$202011161018$$$1$$$§T$A=1@O=Adunistraße, München@L=790090@a=128@$A=1@O=Pündterplatz, München@L=622912@a=128@$202011161018$202011161102$ 53$$1$$$§G@F$A=1@O=Pündterplatz, München@L=622912@a=128@$A=1@O=Karl-Theodor-Straße, München@L=621790@a=128@$202011161102$202011161111$$$1$$$¶GP¶ft@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§bt@0@2000@120@1@100@1@1000@0@@@@@false@0@-1@$f@$f@$f@$f@$f@$§tt@0@5000@120@1@100@1@2500@0@@@@@false@0@-1@$t@0@25000@120@1@100@1@3000@0@@@@@false@0@-1@$f@$f@$f@$f@$§", + "freq": { + "minC": 10 + }, + "conSubscr": "N", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "calcDate": "20201115", + "locMode": "FROM_START", + "reqMode": "UNKNOWN", + "calcTime": "143055" + }, + "cksum": "5db863da_3", + "cksumDti": "2bb9e7d8_3" + }, + { + "cid": "C-5", + "date": "20201116", + "dur": "002800", + "chg": 3, + "sDays": { + "sDaysR": "runs 16. until 27. Nov 2020 Mo - Fr ", + "sDaysB": "000000000000000000000000000000000000000000000000000000000000000000000000000000001F3E7CF80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 9, + "aProdX": 29, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "JNY", + "icoX": 2, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 27, + "idx": 12, + "aProdX": 28, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "101700", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|9605|2|80|16112020", + "prodX": 30, + "dirTxt": "Höhenkirchen-Siegertsbrunn", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 0, + "idx": 11, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dDirTxt": "Höhenkirchen-Siegertsbrunn", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 27, + "idx": 12, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "101700", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 20, + "maxC": 20, + "numC": 7 + }, + "ctxRecon": "T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Harras@L=8004130@a=128@$202011161015$202011161017$S 7$$1$$$", + "msgL": [ + { + "type": "REM", + "remX": 0, + "fLocX": 0, + "tLocX": 27, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1126170624 + }, + { + "type": "REM", + "remX": 1, + "fLocX": 0, + "tLocX": 27, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 2, + "fLocX": 0, + "tLocX": 27, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 3, + "fLocX": 0, + "tLocX": 27, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1152385024 + } + ], + "chRatingSoll": 2, + "subscr": "F", + "chgDurR": 3, + "prodL": [ + { + "prodX": 30, + "fLocX": 0, + "tLocX": 27, + "fIdx": 11, + "tIdx": 12 + } + ] + }, + "minChg": "000300" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 27, + "dInR": true, + "dTimeS": "101700", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 71, + "aOutR": true, + "aTimeS": "102000", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 152, + "durS": "000300", + "dirGeo": 28, + "ctx": "H|1|W$A=1@O=München Harras@L=8004130@a=128@$A=1@O=Harras, München@L=624602@a=128@$202011161017$202011161020$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 15, + "dep": { + "locX": 71, + "idx": 0, + "dProdX": 37, + "dInR": true, + "dTimeS": "102000", + "dProgType": "PROGNOSED", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 12, + "idx": 4, + "aProdX": 37, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|27512|1|80|16112020", + "prodX": 38, + "dirTxt": "Münchner Freiheit, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 71, + "idx": 0, + "dProdX": 38, + "dInR": true, + "dTimeS": "102000", + "dProgType": "PROGNOSED", + "dDirTxt": "Münchner Freiheit, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 8, + "idx": 1, + "aProdX": 38, + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 38, + "dInR": true, + "dTimeS": "102200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 10, + "idx": 2, + "aProdX": 38, + "aOutR": true, + "aTimeS": "102300", + "aTZOffset": 60, + "dProdX": 38, + "dInR": true, + "dTimeS": "102300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 11, + "idx": 3, + "aProdX": 38, + "aOutR": true, + "aTimeS": "102400", + "aTZOffset": 60, + "dProdX": 38, + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 12, + "idx": 4, + "aProdX": 38, + "aOutR": true, + "aTimeS": "102600", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 4, + "maxC": 6, + "numC": 25 + }, + "ctxRecon": "T$A=1@O=Harras, München@L=624602@a=128@$A=1@O=Sendlinger Tor, München@L=625176@a=128@$202011161020$202011161026$U 6$$1$$$", + "chRatingSoll": 2, + "subscr": "N", + "chgDurR": 2, + "prodL": [ + { + "prodX": 38, + "fLocX": 71, + "tLocX": 12, + "fIdx": 0, + "tIdx": 4 + } + ] + }, + "minChg": "000200" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 12, + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 72, + "aOutR": true, + "aTimeS": "102800", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 56, + "durS": "000200", + "dirGeo": 12, + "ctx": "H|1|W$A=1@O=Sendlinger Tor, München@L=625176@a=128@$A=1@O=Sendlinger Tor, München@L=624625@a=128@$202011161026$202011161028$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 4, + "dep": { + "locX": 72, + "idx": 0, + "dProdX": 58, + "dInR": true, + "dTimeS": "102800", + "dProgType": "PROGNOSED", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 73, + "idx": 1, + "aProdX": 58, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|22977|21|80|16112020", + "prodX": 74, + "dirTxt": "Willibaldplatz, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 72, + "idx": 0, + "dProdX": 74, + "dInR": true, + "dTimeS": "102800", + "dProgType": "PROGNOSED", + "dDirTxt": "Willibaldplatz, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 73, + "idx": 1, + "aProdX": 74, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 2, + "maxC": 3, + "numC": 49 + }, + "ctxRecon": "T$A=1@O=Sendlinger Tor, München@L=624625@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624746@a=128@$202011161028$202011161030$ 29$$1$$$", + "chRatingSoll": 2, + "subscr": "N", + "chgDurR": 1, + "prodL": [ + { + "prodX": 74, + "fLocX": 72, + "tLocX": 73, + "fIdx": 0, + "tIdx": 1 + } + ] + }, + "minChg": "000100" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 73, + "dInR": true, + "dTimeS": "103000", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 75, + "aOutR": true, + "aTimeS": "103100", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 20, + "durS": "000100", + "dirGeo": 20, + "ctx": "H|1|W$A=1@O=Karlsplatz (Stachus), München@L=624746@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$202011161030$202011161031$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 4, + "dep": { + "locX": 75, + "idx": 0, + "dProdX": 29, + "dInR": true, + "dTimeS": "103100", + "dProgType": "PROGNOSED", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 9, + "aProdX": 29, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|22959|2|80|16112020", + "prodX": 75, + "dirTxt": "Scheidplatz, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 75, + "idx": 0, + "dProdX": 75, + "dInR": true, + "dTimeS": "103100", + "dProgType": "PROGNOSED", + "dDirTxt": "Scheidplatz, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 76, + "idx": 1, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103300", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 78, + "idx": 2, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103400", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 80, + "idx": 3, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103600", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 81, + "idx": 4, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103700", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 82, + "idx": 5, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 84, + "idx": 6, + "aProdX": 75, + "aOutR": true, + "aTimeS": "103900", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "103900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 86, + "idx": 7, + "aProdX": 75, + "aOutR": true, + "aTimeS": "104100", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "104100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 87, + "idx": 8, + "aProdX": 75, + "aOutR": true, + "aTimeS": "104200", + "aTZOffset": 60, + "dProdX": 75, + "dInR": true, + "dTimeS": "104200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 70, + "idx": 9, + "aProdX": 75, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161031$202011161043$ 28$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 75, + "fLocX": 75, + "tLocX": 70, + "fIdx": 0, + "tIdx": 9 + } + ] + } + } + ], + "ctxRecon": "¶HKI¶T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Harras@L=8004130@a=128@$202011161015$202011161017$S 7$$1$$$§W$A=1@O=München Harras@L=8004130@a=128@$A=1@O=Harras, München@L=624602@a=128@$202011161017$202011161020$$$1$$$§T$A=1@O=Harras, München@L=624602@a=128@$A=1@O=Sendlinger Tor, München@L=625176@a=128@$202011161020$202011161026$U 6$$1$$$§W$A=1@O=Sendlinger Tor, München@L=625176@a=128@$A=1@O=Sendlinger Tor, München@L=624625@a=128@$202011161026$202011161028$$$1$$$§T$A=1@O=Sendlinger Tor, München@L=624625@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624746@a=128@$202011161028$202011161030$ 29$$1$$$§W$A=1@O=Karlsplatz (Stachus), München@L=624746@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$202011161030$202011161031$$$1$$$§T$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161031$202011161043$ 28$$1$$$", + "freq": { + "minC": 20 + }, + "conSubscr": "P", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "cnLocX": 0, + "calcDate": "20201115", + "jid": "1|9605|2|80|-1", + "locMode": "FROM_START", + "pLocX": 0, + "reqMode": "UNKNOWN", + "sectX": 0, + "calcTime": "143055" + }, + "cksum": "484ac4c9_3", + "cksumDti": "894674a3_3" + }, + { + "cid": "C-6", + "date": "20201116", + "dur": "003000", + "chg": 2, + "sDays": { + "sDaysR": "runs 16. until 27. Nov 2020 Mo - Fr ", + "sDaysB": "000000000000000000000000000000000000000000000000000000000000000000000000000000001F3E7CF80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 1, + "aProdX": 76, + "aOutR": true, + "aTimeS": "104500", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "JNY", + "icoX": 2, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 88, + "idx": 16, + "aProdX": 28, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|9605|2|80|16112020", + "prodX": 30, + "dirTxt": "Höhenkirchen-Siegertsbrunn", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 0, + "idx": 11, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dDirTxt": "Höhenkirchen-Siegertsbrunn", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 27, + "idx": 12, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "101700", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 90, + "idx": 13, + "aProdX": 30, + "aPlatfS": "2", + "aOutR": true, + "aTimeS": "101900", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "2", + "dInR": true, + "dTimeS": "102000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 47, + "idx": 14, + "aProdX": 30, + "aPlatfS": "4", + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "4", + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 91, + "idx": 15, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102500", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 88, + "idx": 16, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 20, + "maxC": 20, + "numC": 7 + }, + "ctxRecon": "T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Hbf (tief)@L=8098263@a=128@$202011161015$202011161027$S 7$$1$$$", + "msgL": [ + { + "type": "REM", + "remX": 0, + "fLocX": 0, + "tLocX": 88, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1126170624 + }, + { + "type": "REM", + "remX": 1, + "fLocX": 0, + "tLocX": 88, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 2, + "fLocX": 0, + "tLocX": 88, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 3, + "fLocX": 0, + "tLocX": 88, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1152385024 + } + ], + "chRatingSoll": 2, + "subscr": "F", + "chgDurR": 6, + "prodL": [ + { + "prodX": 30, + "fLocX": 0, + "tLocX": 88, + "fIdx": 11, + "tIdx": 16 + } + ] + }, + "minChg": "000300" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 88, + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 92, + "aOutR": true, + "aTimeS": "103000", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 134, + "durS": "000300", + "dirGeo": 26, + "ctx": "H|1|W$A=1@O=München Hbf (tief)@L=8098263@a=128@$A=1@O=Hauptbahnhof, München@L=624637@a=128@$202011161027$202011161030$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 10, + "dep": { + "locX": 92, + "idx": 14, + "dProdX": 98, + "dInR": true, + "dTimeS": "103300", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 93, + "idx": 19, + "aProdX": 98, + "aOutR": true, + "aTimeS": "104000", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|23370|7|80|16112020", + "prodX": 104, + "dirTxt": "Harthof, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 92, + "idx": 14, + "dProdX": 104, + "dInR": true, + "dTimeS": "103300", + "dDirTxt": "Harthof, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 95, + "idx": 15, + "aProdX": 104, + "aOutR": true, + "aTimeS": "103500", + "aTZOffset": 60, + "dProdX": 104, + "dInR": true, + "dTimeS": "103500", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 96, + "idx": 16, + "aProdX": 104, + "aOutR": true, + "aTimeS": "103600", + "aTZOffset": 60, + "dProdX": 104, + "dInR": true, + "dTimeS": "103600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 97, + "idx": 17, + "aProdX": 104, + "aOutR": true, + "aTimeS": "103700", + "aTZOffset": 60, + "dProdX": 104, + "dInR": true, + "dTimeS": "103700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 64, + "idx": 18, + "aProdX": 104, + "aOutR": true, + "aTimeS": "103800", + "aTZOffset": 60, + "dProdX": 104, + "dInR": true, + "dTimeS": "103800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 93, + "idx": 19, + "aProdX": 104, + "aOutR": true, + "aTimeS": "104000", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 5, + "maxC": 5, + "numC": 25 + }, + "ctxRecon": "T$A=1@O=Hauptbahnhof, München@L=624637@a=128@$A=1@O=Scheidplatz, München@L=624529@a=128@$202011161033$202011161040$U 2$$1$$$", + "chRatingSoll": 2, + "subscr": "N", + "chgDurR": 4, + "prodL": [ + { + "prodX": 104, + "fLocX": 92, + "tLocX": 93, + "fIdx": 14, + "tIdx": 19 + } + ] + }, + "minChg": "000300" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 93, + "dInR": true, + "dTimeS": "104000", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 98, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 18, + "durS": "000300", + "dirGeo": 24, + "ctx": "H|1|W$A=1@O=Scheidplatz, München@L=624529@a=128@$A=1@O=Scheidplatz, München@L=624388@a=128@$202011161040$202011161043$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 4, + "dep": { + "locX": 98, + "idx": 0, + "dProdX": 76, + "dInR": true, + "dTimeS": "104400", + "dProgType": "PROGNOSED", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 1, + "aProdX": 76, + "aOutR": true, + "aTimeS": "104500", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|22954|1|80|16112020", + "prodX": 105, + "dirTxt": "Karlsplatz (Stachus), München", + "dirFlg": "1", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 98, + "idx": 0, + "dProdX": 105, + "dInR": true, + "dTimeS": "104400", + "dProgType": "PROGNOSED", + "dDirTxt": "Karlsplatz (Stachus), München", + "dDirFlg": "1", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 70, + "idx": 1, + "aProdX": 105, + "aOutR": true, + "aTimeS": "104500", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 5, + "maxC": 5, + "numC": 25 + }, + "ctxRecon": "T$A=1@O=Scheidplatz, München@L=624388@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161044$202011161045$ 28$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 105, + "fLocX": 98, + "tLocX": 70, + "fIdx": 0, + "tIdx": 1 + } + ] + } + } + ], + "ctxRecon": "¶HKI¶T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Hbf (tief)@L=8098263@a=128@$202011161015$202011161027$S 7$$1$$$§W$A=1@O=München Hbf (tief)@L=8098263@a=128@$A=1@O=Hauptbahnhof, München@L=624637@a=128@$202011161027$202011161030$$$1$$$§T$A=1@O=Hauptbahnhof, München@L=624637@a=128@$A=1@O=Scheidplatz, München@L=624529@a=128@$202011161033$202011161040$U 2$$1$$$§W$A=1@O=Scheidplatz, München@L=624529@a=128@$A=1@O=Scheidplatz, München@L=624388@a=128@$202011161040$202011161043$$$1$$$§T$A=1@O=Scheidplatz, München@L=624388@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161044$202011161045$ 28$$1$$$", + "freq": { + "minC": 20 + }, + "conSubscr": "P", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "cnLocX": 0, + "calcDate": "20201115", + "jid": "1|9605|2|80|-1", + "locMode": "FROM_START", + "pLocX": 0, + "reqMode": "UNKNOWN", + "sectX": 0, + "calcTime": "143055" + }, + "cksum": "5fa6c133_3", + "cksumDti": "b1e58a35_3" + }, + { + "cid": "C-7", + "date": "20201116", + "dur": "003800", + "chg": 1, + "sDays": { + "sDaysR": "runs 16. until 28. Nov 2020 Mo - Sa ", + "sDaysB": "00000000000000000000000000007A0003D7EF9DBF3EEDFBF7EFDFBF00000000000FBF7EB9FBF7CFDFBF7EFC0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 9, + "aProdX": 106, + "aOutR": true, + "aTimeS": "105300", + "aTZOffset": 60, + "type": "N" + }, + "secL": [ + { + "type": "JNY", + "icoX": 2, + "dep": { + "locX": 0, + "idx": 11, + "dProdX": 28, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 74, + "idx": 17, + "aProdX": 28, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102800", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|9605|2|80|16112020", + "prodX": 30, + "dirTxt": "Höhenkirchen-Siegertsbrunn", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 0, + "idx": 11, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101500", + "dDirTxt": "Höhenkirchen-Siegertsbrunn", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 27, + "idx": 12, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "101700", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "101700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 90, + "idx": 13, + "aProdX": 30, + "aPlatfS": "2", + "aOutR": true, + "aTimeS": "101900", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "2", + "dInR": true, + "dTimeS": "102000", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 47, + "idx": 14, + "aProdX": 30, + "aPlatfS": "4", + "aOutR": true, + "aTimeS": "102200", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "4", + "dInR": true, + "dTimeS": "102400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 91, + "idx": 15, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102500", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "102600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 88, + "idx": 16, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102700", + "aTZOffset": 60, + "dProdX": 30, + "dPlatfS": "1", + "dInR": true, + "dTimeS": "102700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 74, + "idx": 17, + "aProdX": 30, + "aPlatfS": "1", + "aOutR": true, + "aTimeS": "102800", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 20, + "maxC": 20, + "numC": 7 + }, + "ctxRecon": "T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Karlsplatz@L=8004132@a=128@$202011161015$202011161028$S 7$$1$$$", + "msgL": [ + { + "type": "REM", + "remX": 0, + "fLocX": 0, + "tLocX": 74, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1126170624 + }, + { + "type": "REM", + "remX": 1, + "fLocX": 0, + "tLocX": 74, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 2, + "fLocX": 0, + "tLocX": 74, + "tagL": [ + "RES_JNY_DTL" + ], + "sort": 1141899264 + }, + { + "type": "REM", + "remX": 3, + "fLocX": 0, + "tLocX": 74, + "tagL": [ + "RES_JNY_DTL_L" + ], + "sort": 1152385024 + } + ], + "chRatingSoll": 2, + "subscr": "F", + "chgDurR": 13, + "prodL": [ + { + "prodX": 30, + "fLocX": 0, + "tLocX": 74, + "fIdx": 11, + "tIdx": 17 + } + ] + }, + "minChg": "000400" + }, + { + "type": "WALK", + "icoX": 7, + "dep": { + "locX": 74, + "dInR": true, + "dTimeS": "102800", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 75, + "aOutR": true, + "aTimeS": "103200", + "aTZOffset": 60, + "type": "N" + }, + "gis": { + "dist": 111, + "durS": "000400", + "dirGeo": 22, + "ctx": "H|1|W$A=1@O=München Karlsplatz@L=8004132@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$202011161028$202011161032$$$1$$$", + "gisPrvr": "H", + "getDescr": true, + "getPoly": true + } + }, + { + "type": "JNY", + "icoX": 4, + "dep": { + "locX": 75, + "idx": 0, + "dProdX": 106, + "dInR": true, + "dTimeS": "104100", + "dProgType": "PROGNOSED", + "dTZOffset": 60, + "type": "N" + }, + "arr": { + "locX": 70, + "idx": 9, + "aProdX": 106, + "aOutR": true, + "aTimeS": "105300", + "aTZOffset": 60, + "type": "N" + }, + "jny": { + "jid": "1|22959|3|80|16112020", + "prodX": 107, + "dirTxt": "Scheidplatz, München", + "dirFlg": "2", + "status": "P", + "isRchbl": true, + "stopL": [ + { + "locX": 75, + "idx": 0, + "dProdX": 107, + "dInR": true, + "dTimeS": "104100", + "dProgType": "PROGNOSED", + "dDirTxt": "Scheidplatz, München", + "dDirFlg": "2", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 76, + "idx": 1, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104300", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104300", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 78, + "idx": 2, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104400", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104400", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 80, + "idx": 3, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104600", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104600", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 81, + "idx": 4, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104700", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104700", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 82, + "idx": 5, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104800", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104800", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 84, + "idx": 6, + "aProdX": 107, + "aOutR": true, + "aTimeS": "104900", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "104900", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 86, + "idx": 7, + "aProdX": 107, + "aOutR": true, + "aTimeS": "105100", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "105100", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 87, + "idx": 8, + "aProdX": 107, + "aOutR": true, + "aTimeS": "105200", + "aTZOffset": 60, + "dProdX": 107, + "dInR": true, + "dTimeS": "105200", + "dTZOffset": 60, + "type": "N" + }, + { + "locX": 70, + "idx": 9, + "aProdX": 107, + "aOutR": true, + "aTimeS": "105300", + "aTZOffset": 60, + "type": "N" + } + ], + "freq": { + "minC": 10, + "maxC": 10, + "numC": 13 + }, + "ctxRecon": "T$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161041$202011161053$ 28$$1$$$", + "subscr": "N", + "prodL": [ + { + "prodX": 107, + "fLocX": 75, + "tLocX": 70, + "fIdx": 0, + "tIdx": 9 + } + ] + } + } + ], + "ctxRecon": "¶HKI¶T$A=1@O=München-Mittersendling@L=8004154@a=128@$A=1@O=München Karlsplatz@L=8004132@a=128@$202011161015$202011161028$S 7$$1$$$§W$A=1@O=München Karlsplatz@L=8004132@a=128@$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$202011161028$202011161032$$$1$$$§T$A=1@O=Karlsplatz (Stachus), München@L=624744@a=128@$A=1@O=Karl-Theodor-Straße, München@L=638842@a=128@$202011161041$202011161053$ 28$$1$$$", + "freq": { + "minC": 20 + }, + "conSubscr": "P", + "recState": "U", + "sotRating": 0, + "isSotCon": false, + "showARSLink": false, + "sotCtxt": { + "cnLocX": 0, + "calcDate": "20201115", + "jid": "1|9605|2|80|-1", + "locMode": "FROM_START", + "pLocX": 0, + "reqMode": "UNKNOWN", + "sectX": 0, + "calcTime": "143055" + }, + "cksum": "a2dec66f_3", + "cksumDti": "917ce36f_3" + } + ], + "outCtxScrB": "2|OB|MT#11#488764#488761#488798#488798#0#0#165#488760#1#-2147482624#0#1#2|PDH#2b878f47f29a9a10624384e358b5f85e|RD#16112020|RT#100000|US#1", + "outCtxScrF": "2|OF|MT#11#488775#488775#488803#488813#0#0#165#488765#8#-2147483646#0#1#2|PDH#2b878f47f29a9a10624384e358b5f85e|RD#16112020|RT#100000|US#1", + "fpB": "20191215", + "fpE": "20211211", + "bfATS": -1, + "bfIOSTS": -1, + "planrtTS": "1605447010", + "outConGrpL": [ + { + "name": "Alle Verbindungen", + "icoX": 29, + "grpid": "pt_only", + "conScoringL": [ + { + "type": "DT", + "conScoreL": [ + { + "score": 7086444799915459000, + "conRefL": [ + 0 + ] + }, + { + "score": 7086440401822810000, + "conRefL": [ + 1 + ] + }, + { + "score": 7086431605782217000, + "conRefL": [ + 2 + ] + }, + { + "score": 7086400819450348000, + "conRefL": [ + 3 + ] + }, + { + "score": 7086396421357699000, + "conRefL": [ + 4 + ] + }, + { + "score": 7086383227283177000, + "conRefL": [ + 5 + ] + }, + { + "score": 7086383227278983000, + "conRefL": [ + 6 + ] + }, + { + "score": 7086383227262206000, + "conRefL": [ + 7 + ] + } + ], + "name": "Departure" + }, + { + "type": "AT", + "conScoreL": [ + { + "score": 7086282072194548000, + "conRefL": [ + 0 + ] + }, + { + "score": 7086180917078655000, + "conRefL": [ + 1 + ] + }, + { + "score": 7086282072200839000, + "conRefL": [ + 2 + ] + }, + { + "score": 7086238091729437000, + "conRefL": [ + 3 + ] + }, + { + "score": 7086136936613544000, + "conRefL": [ + 4 + ] + }, + { + "score": 7086260081980867000, + "conRefL": [ + 5 + ] + }, + { + "score": 7086251285883650000, + "conRefL": [ + 6 + ] + }, + { + "score": 7086216101494784000, + "conRefL": [ + 7 + ] + } + ], + "name": "Arrival" + }, + { + "type": "TI", + "conScoreL": [ + { + "score": 9223208290167554000, + "conRefL": [ + 0 + ] + }, + { + "score": 9223111533142213000, + "conRefL": [ + 1 + ] + }, + { + "score": 9223221484300796000, + "conRefL": [ + 2 + ] + }, + { + "score": 9223208290146583000, + "conRefL": [ + 3 + ] + }, + { + "score": 9223111533121241000, + "conRefL": [ + 4 + ] + }, + { + "score": 9223247872556794000, + "conRefL": [ + 5 + ] + }, + { + "score": 9223239076463772000, + "conRefL": [ + 6 + ] + }, + { + "score": 9223203892091683000, + "conRefL": [ + 7 + ] + } + ], + "name": "Duration" + } + ], + "initScoringType": "DT" + } + ] +} diff --git a/test/index.js b/test/index.js index 74a7bf41..d93151f3 100644 --- a/test/index.js +++ b/test/index.js @@ -7,6 +7,7 @@ require('./db-stop') require('./insa-stop') require('./bvg-journey') require('./db-journey') +require('./db-journey-2') require('./db-journey-polyline') require('./db-arrivals') require('./vbb-departures')