map_history: uniq_by_route did not consider the actual passenger route, scrap it

This commit is contained in:
Daniel Friesel 2019-11-16 16:03:03 +01:00
parent 733fe2d853
commit 4f2eac9cef

View file

@ -427,13 +427,9 @@ sub map_history {
my @station_coordinates = map { [ $location->{$_}, $_ ] }
grep { exists $location->{$_} } @stations;
my @uniq_by_route = uniq_by {
join( '|', map { $_->[0] } @{ $_->{route} } )
}
@journeys;
my @station_pairs;
for my $journey (@uniq_by_route) {
for my $journey (@journeys) {
my @route = map { $_->[0] } @{ $journey->{route} };
my $prev_station = shift @route;
my $within = 0;