diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-19 11:12:43 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-19 11:12:43 +0100 |
commit | a1add16883b775bf8a7032df14ed6450e4bd0811 (patch) | |
tree | 5e0f786aed8c660bf53ca807d2f11194176732f8 /bin | |
parent | d2c20165d8976d4375195bd1255612422714d670 (diff) |
expose and show arr/dep and route platforms
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dbris | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -265,21 +265,28 @@ for my $connection ( $ris->connections ) { printf( "${output_bold}%s${output_reset}\n", $segment->train_long ); } - printf( "%s ab %s\n", + printf( "%s ab %s%s\n", $segment->dep->strftime('%H:%M'), - $segment->dep_name ); + $segment->dep_name, + $segment->dep_platform ? q{ } . $segment->dep_platform : q{}, + ); if ($show_full_route) { for my $stop ( $segment->route ) { - printf( "%s %s %s\n", + printf( "%s %s %s%s\n", $stop->arr ? $stop->arr->strftime('%H:%M') : q{ }, - format_occupancy($stop), $stop->name, ); + format_occupancy($stop), + $stop->name, + $stop->platform ? q{ } . $stop->platform : q{}, + ); } } - printf( "%s an %s\n", + printf( "%s an %s%s\n", $segment->arr->strftime('%H:%M'), - $segment->arr_name ); + $segment->arr_name, + $segment->arr_platform ? q{ } . $segment->arr_platform : q{}, + ); say q{}; } say q{---------------------------------------}; |