Unverified Commit b7af35c2 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Section: add TRSF type (unspecified local transit)

parent f40128de
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -434,6 +434,14 @@ for my $res ( $hafas->connections ) {
				$sec->duration->in_units('minutes') == 1 ? q{} : 's'
			);
		}
		elsif ( $sec->type eq 'TRSF' ) {
			printf(
"${output_bold}Transfer %.1fkm${output_reset} with local transit  (approx. %d minute%s)",
				$sec->distance / 1000,
				$sec->duration->in_units('minutes'),
				$sec->duration->in_units('minutes') == 1 ? q{} : 's'
			);
		}
		else {
			printf("\n???\n");
		}
+9 −8
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ sub new {
			hafas   => $hafas,
		);
	}
	elsif ( $sec->{type} eq 'WALK' ) {
	elsif ( $sec->{type} eq 'TRSF' or $sec->{type} eq 'WALK' ) {
		$ref->{distance} = $sec->{gis}{dist};
		my $duration = $sec->{gis}{durS};
		$ref->{duration} = DateTime::Duration->new(
@@ -270,15 +270,15 @@ Travel::Status::DE::HAFAS::Location(3pm) object describing the departure stop.

=item $section->dep_platform

=item $section->distance (WALK)
=item $section->distance (TRSF, WALK)

Walking distance in meters. Does not take vertical elevation changes into
account.
Transfer or walking distance in meters. Does not take vertical elevation
changes into account.

=item $section->duration (WALK)
=item $section->duration (TRSF, WALK)

DateTime::Duration(3pm) oobject holding the walking duration.
Typically assumes a slow pace.
DateTime::Duration(3pm) oobject holding the estimated transfer or walk
duration. Typically assumes a slow pace.

=item $section->journey (JNY)

@@ -328,7 +328,8 @@ Undef for the first journey in a connection.
=item $section->type

Type of this section as exposeed by the HAFAS backend.
Known types: B<JNY> (a public transit journey) and B<WALK> (walking).
Known types: B<JNY> (a public transit journey), B<TRSF> (unspecified local
transit), and B<WALK> (walking).

=back