get_travel_distance: warn about removed stations (TODO: re-add them)
This commit is contained in:
parent
4b4c975978
commit
3851f05518
1 changed files with 10 additions and 0 deletions
|
@ -957,6 +957,16 @@ sub get_travel_distance {
|
||||||
my $route_ref = $journey->{route};
|
my $route_ref = $journey->{route};
|
||||||
my $polyline_ref = $journey->{polyline};
|
my $polyline_ref = $journey->{polyline};
|
||||||
|
|
||||||
|
if ( not $to ) {
|
||||||
|
$self->{log}
|
||||||
|
->warn("Journey $journey->{id} has no to_name for EVA $to_eva");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( not $from ) {
|
||||||
|
$self->{log}
|
||||||
|
->warn("Journey $journey->{id} has no from_name for EVA $from_eva");
|
||||||
|
}
|
||||||
|
|
||||||
my $distance_polyline = 0;
|
my $distance_polyline = 0;
|
||||||
my $distance_intermediate = 0;
|
my $distance_intermediate = 0;
|
||||||
my $distance_beeline = 0;
|
my $distance_beeline = 0;
|
||||||
|
|
Loading…
Reference in a new issue