map_history: uniq_by_route did not consider the actual passenger route, scrap it
This commit is contained in:
parent
733fe2d853
commit
4f2eac9cef
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue