diff options
author | Daniel Friesel <derf@finalrewind.org> | 2023-01-22 20:15:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2023-01-22 20:15:17 +0100 |
commit | 90ceeffc8f4dc0aaaa1ced04328f7653e35a1b6e (patch) | |
tree | 8b120a1da7e5f13158bcb02c9607d2b54644536c /lib/Travel | |
parent | 78d3e0621472cbca66a79262dd3da8047a46bfdd (diff) |
Journey: add station accessor for db-fakedisplay
Diffstat (limited to 'lib/Travel')
-rw-r--r-- | lib/Travel/Status/DE/HAFAS/Journey.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Travel/Status/DE/HAFAS/Journey.pm b/lib/Travel/Status/DE/HAFAS/Journey.pm index d19e0e0..0fbec9e 100644 --- a/lib/Travel/Status/DE/HAFAS/Journey.pm +++ b/lib/Travel/Status/DE/HAFAS/Journey.pm @@ -15,7 +15,7 @@ our $VERSION = '4.02'; Travel::Status::DE::HAFAS::Journey->mk_ro_accessors( qw(datetime sched_datetime rt_datetime is_cancelled is_partially_cancelled - platform sched_platform rt_platform operator + station platform sched_platform rt_platform operator id name type type_long class number line load delay route_end route_start origin destination direction) ); @@ -160,7 +160,7 @@ sub new { } if ( $journey->{stbStop} ) { - shift @stops; + shift(@stops); } my $ref = { @@ -196,6 +196,7 @@ sub new { bless( $ref, $obj ); if ( $journey->{stbStop} ) { + $ref->{station} = $locL[ $journey->{stbStop}{locX} ]->{name}; $ref->{sched_platform} = $journey->{stbStop}{dPlatfS}; $ref->{rt_platform} = $journey->{stbStop}{dPlatfR}; $ref->{platform} = $ref->{rt_platform} // $ref->{sched_platform}; @@ -386,7 +387,7 @@ Returns the long type of this journey, e.g. "S-Bahn" or "Regional-Express". Returns an integer identifying the the mode of transport class. Semantics depend on backend, e.g. "1" and "2" for long-distance trains and -"4" and "8" for region trains. +"4" and "8" for regional trains. =item $journey->line |