chore: routeCorrections update

This commit is contained in:
2025-01-25 02:03:43 +01:00
parent d1adcd8287
commit 684bbdac31
+4 -2
View File
@@ -190,7 +190,9 @@ const routeCorrections: Record<string, { departureSpeed: Record<string, number>;
'WG-WG(gt)': 100, 'WG-WG(gt)': 100,
'WG(gt)-Żak': 120, 'WG(gt)-Żak': 120,
}, },
departureTracks: {}, departureTracks: {
'WW-Br': 2,
},
}, },
'LCS Żywiec': { 'LCS Żywiec': {
departureSpeed: { departureSpeed: {
@@ -325,7 +327,7 @@ export default defineComponent({
let departureSpeed = currentPath.departureLineData?.routeSpeed ?? 0, let departureSpeed = currentPath.departureLineData?.routeSpeed ?? 0,
departureTracks = currentPath.departureLineData?.routeTracks ?? 2; departureTracks = currentPath.departureLineData?.routeTracks ?? 2;
console.log('=========== ' + this.selectedTrain.trainNo + ' ==========='); // console.log('=========== ' + this.selectedTrain.trainNo + ' ===========');
for (const stop of timetable.stopList) { for (const stop of timetable.stopList) {
if (stop.arrivalLine && stop.arrivalLine == currentPath.arrivalLine) { if (stop.arrivalLine && stop.arrivalLine == currentPath.arrivalLine) {