Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
front: Fix train displaying as not honored despite respecting times a…
…nd stops The bug was caused by attempting to match the schedule constraint data with the train's arrival times at each point along its route. The first table (`trainSchedule.schedule`) contains only points with time constraints, while the second table (`trainSummary.path_item_times_final`) includes the train's arrival times for all intermediate points, including those without time constraints. So, matching the indices between the two tables doesn't work because the first table skips points that aren't constrained.
- Loading branch information