diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-12-30 11:30:45 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-12-30 11:30:45 +0100 |
commit | f6eb842b8cf362f7afd13e4099b7424d817c0034 (patch) | |
tree | 54914855a621f9d8b80a87a4358912f678d2d743 /lib | |
parent | b3c7a6966e4ee66f24038af681dcf35f90e1d71f (diff) |
Stop: Add is_additional accessor
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travel/Status/DE/HAFAS/Stop.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Travel/Status/DE/HAFAS/Stop.pm b/lib/Travel/Status/DE/HAFAS/Stop.pm index f652b4d..936bd40 100644 --- a/lib/Travel/Status/DE/HAFAS/Stop.pm +++ b/lib/Travel/Status/DE/HAFAS/Stop.pm @@ -16,6 +16,7 @@ Travel::Status::DE::HAFAS::Stop->mk_ro_accessors( rt_dep sched_dep dep dep_delay dep_cancelled delay direction rt_platform sched_platform platform is_changed_platform + is_additional load ) ); @@ -69,6 +70,7 @@ sub new { my $arr_cancelled = $stop->{aCncl}; my $dep_cancelled = $stop->{dCncl}; + my $is_additional = $stop->{isAdd}; my @messages; for my $msg ( @{ $stop->{msgL} // [] } ) { @@ -109,6 +111,7 @@ sub new { rt_platform => $rt_platform, is_changed_platform => $changed_platform, platform => $rt_platform // $sched_platform, + is_additional => $is_additional, load => $tco, messages => \@messages, }; @@ -273,6 +276,10 @@ Actual or scheduled platform. True if real-time and scheduled platform disagree. +=item $stop->is_additional + +True if the stop is an unscheduled addition to the train's route. + =item $stop->load Expected utilization / passenger load from this stop on. |