From 88cfaec82f061b3d1e5556b1c9b282a1988d2415 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 3 Oct 2022 08:29:04 +0200 Subject: find-missing: skip SEV stations --- share/find-missing | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/find-missing b/share/find-missing index e69a7a1..618fc78 100755 --- a/share/find-missing +++ b/share/find-missing @@ -44,6 +44,9 @@ my $status = Travel::Status::DE::IRIS->new( my @missing; for my $result ( $status->results ) { + if ( $result->type eq 'Bus' ) { + next; + } for my $name ( $result->route_pre, $result->route_post ) { my @matches = Travel::Status::DE::IRIS::Stations::get_station_by_name($name); -- cgit v1.2.3