From d4c26415287f172a45b967c9c31910fb5e9689fe Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 25 Jan 2017 23:16:14 +0100 Subject: Fix Result->line_no (now belongs to /, no longer ) --- Changelog | 4 ++++ lib/Travel/Status/DE/IRIS.pm | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 9060282..ebbb8f6 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +git HEAD + + * Fix support for line numbers, remove manual line map workaround + Travel::Status::DE::IRIS 1.12 - Fri Dec 30 2016 * Unfortunately, line numbers are not available at the moment due to IRIS diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm index 091c607..fc7d8cc 100644 --- a/lib/Travel/Status/DE/IRIS.pm +++ b/lib/Travel/Status/DE/IRIS.pm @@ -262,7 +262,6 @@ sub add_result { unknown_t => $e_tl->getAttribute('t'), # p train_no => $e_tl->getAttribute('n'), # dep number type => $e_tl->getAttribute('c'), # S/ICE/ERB/... - line_no => $e_tl->getAttribute('l'), # 1 -> S1, ... station => $station, unknown_o => $e_tl->getAttribute('o'), # owner: 03/80/R2/... strptime_obj => $self->{strptime_obj}, @@ -270,6 +269,7 @@ sub add_result { if ($e_ar) { $data{arrival_ts} = $e_ar->getAttribute('pt'); + $data{line_no} = $e_ar->getAttribute('l'); $data{platform} = $e_ar->getAttribute('pp'); # string, not number! $data{route_pre} = $e_ar->getAttribute('ppth'); $data{route_start} = $e_ar->getAttribute('pde'); @@ -280,6 +280,7 @@ sub add_result { if ($e_dp) { $data{departure_ts} = $e_dp->getAttribute('pt'); + $data{line_no} = $e_dp->getAttribute('l'); $data{platform} = $e_dp->getAttribute('pp'); # string, not number! $data{route_post} = $e_dp->getAttribute('ppth'); $data{route_end} = $e_dp->getAttribute('pde'); -- cgit v1.2.3