From 24a9f8ee75183a411b3a9cf2c72436fb367461e1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 28 Oct 2022 08:44:26 +0200 Subject: add arr_cancelled / dep_cancelled accessors --- bin/hafas-m | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/hafas-m b/bin/hafas-m index f0d7968..13a1d4b 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -249,9 +249,11 @@ if ( $opt{journey} ) { for my $stop ( $result->route ) { printf( "%5s %s %5s %5s %1s%1s %s%s\n", - $stop->{arr} ? $stop->{arr}->strftime('%H:%M') : q{}, - ( $stop->{arr} and $stop->{dep} ) ? '→' : q{ }, - $stop->{dep} ? $stop->{dep}->strftime('%H:%M') : q{}, + $stop->{arr_cancelled} ? '--:--' + : ( $stop->{arr} ? $stop->{arr}->strftime('%H:%M') : q{} ), + ( $stop->{arr} and $stop->{dep} ) ? '→' : q{ }, + $stop->{dep_cancelled} ? '--:--' + : ( $stop->{dep} ? $stop->{dep}->strftime('%H:%M') : q{} ), $stop->{delay} ? sprintf( '(%+d)', $stop->{delay} ) : q{}, display_occupancy( $stop->{load}{FIRST} ), display_occupancy( $stop->{load}{SECOND} ), -- cgit v1.2.3