From 9e247ba5a410c3a5bf4a43576c820ef6e5838649 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sat, 9 Dec 2023 23:31:58 +0100 Subject: HAFAS: Add arrival option --- lib/Travel/Routing/DE/HAFAS.pm | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'lib/Travel/Routing') diff --git a/lib/Travel/Routing/DE/HAFAS.pm b/lib/Travel/Routing/DE/HAFAS.pm index 3c768be..aa7e8b7 100644 --- a/lib/Travel/Routing/DE/HAFAS.pm +++ b/lib/Travel/Routing/DE/HAFAS.pm @@ -216,8 +216,9 @@ sub new { my $req; - my $date = ( $conf{datetime} // $now )->strftime('%Y%m%d'); - my $time = ( $conf{datetime} // $now )->strftime('%H%M%S'); + my $date = ( $conf{datetime} // $now )->strftime('%Y%m%d'); + my $time = ( $conf{datetime} // $now )->strftime('%H%M%S'); + my $outFrwd = $conf{arrival} ? \0 : undef; my ( $from_lid, $to_lid ); if ( $self->{from_stop} =~ m{ ^ [0-9]+ $ }x ) { @@ -243,7 +244,7 @@ sub new { numF => 6, maxChg => undef, minChgTime => undef, - outFrwd => undef, + outFrwd => $outFrwd, viaLocL => undef, trfReq => { cType => 'PK', @@ -692,6 +693,12 @@ must be specified either by name or by EVA ID (e.g. 8000080 for Dortmund Hbf). Destination stop, e.g. "Essen HBf" or "Alfredusbad, Essen (Ruhr)". The stop must be specified either by name or by EVA ID (e.g. 8000080 for Dortmund Hbf). +=item B => I + +If true: request connections that arrive at the destination before the +specified time. If false (default): request connections that leave at the +origin after the specified time. + =item B => I Store HAFAS replies in the provided cache object. This module works with -- cgit v1.2.3