diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-07-20 15:42:11 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-07-20 15:42:49 +0200 |
commit | 7c7b5e9f9536f70c92d66c4055090b46e26c4c11 (patch) | |
tree | f37ce3660591c808d7f116a313b2f47330b14ac0 /lib/Travelynx/Controller/Traveling.pm | |
parent | b12b5a821b68b98aad646f1931c6c9775759952c (diff) |
Do not show station duplicates in geolocation list1.8.4
Diffstat (limited to 'lib/Travelynx/Controller/Traveling.pm')
-rwxr-xr-x | lib/Travelynx/Controller/Traveling.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index ca29594..7599dd0 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -3,6 +3,7 @@ use Mojo::Base 'Mojolicious::Controller'; use DateTime; use DateTime::Format::Strptime; +use List::UtilsBy qw(uniq_by); use Travel::Status::DE::IRIS::Stations; sub homepage { @@ -137,10 +138,11 @@ sub geolocation { distance => $_->[1], } } Travel::Status::DE::IRIS::Stations::get_station_by_location( $lon, - $lat, 5 ); + $lat, 10 ); + @candidates = uniq_by { $_->{name} } @candidates; $self->render( json => { - candidates => [@candidates], + candidates => [ @candidates[ 0 .. 4 ] ], } ); } |