diff --git a/src/c3nav/routing/locator.py b/src/c3nav/routing/locator.py index 47a2597a..27f5e9cb 100644 --- a/src/c3nav/routing/locator.py +++ b/src/c3nav/routing/locator.py @@ -144,7 +144,7 @@ class LocatorSpace: # acceptable points need to have a value for the needed_station_id points = tuple( - np.argwhere(self.levels[:, self.stations_lookup[needed_station_id]] > self.no_signal).ravel() + np.argwhere(self.levels[:, self.stations_lookup[needed_station_id]] < self.no_signal).ravel() ) if not points: return None, None