diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-10-01 21:55:38 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-10-01 21:55:38 +0200 |
commit | 062f0355a6022ba8d95bcd4c770cf793c0473dc3 (patch) | |
tree | 7e92218d8701b42b9efd2a3eaafc441f7b172155 /lib/Travel/Status/DE/IRIS.pm | |
parent | fb38fe520b4c683a3d618dbfb844b9c8439a8fe8 (diff) |
Result: Add "operator" accessor
Diffstat (limited to 'lib/Travel/Status/DE/IRIS.pm')
-rw-r--r-- | lib/Travel/Status/DE/IRIS.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm index 616c782..6777aec 100644 --- a/lib/Travel/Status/DE/IRIS.pm +++ b/lib/Travel/Status/DE/IRIS.pm @@ -325,14 +325,14 @@ sub add_result { my %data = ( raw_id => $id, - classes => $e_tl->getAttribute('f'), # D N S F - train_no => $e_tl->getAttribute('n'), # dep number - type => $e_tl->getAttribute('c'), # S/ICE/ERB/... + classes => $e_tl->getAttribute('f'), # D N S F + operator => $e_tl->getAttribute('o'), # coded operator: 03/80/R2/... + train_no => $e_tl->getAttribute('n'), # dep number + type => $e_tl->getAttribute('c'), # S/ICE/ERB/... station => $station_name, - station_uic => $station_uic + 0, # UIC IDs are numbers + station_uic => $station_uic + 0, # UIC IDs are numbers strptime_obj => $self->{strptime_obj}, - #unknown_o => $e_tl->getAttribute('o'), # owner: 03/80/R2/... #unknown_t => $e_tl->getAttribute('t'), # p ); |