]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/ReverseGeocode.php
adapt CONTRIBUTING.md to new test locations and tools
[nominatim.git] / lib / ReverseGeocode.php
index 8fc22f694f21792e7b0b0e8906e2913bbb93e4fd..d4e138755d99abe0b144a970b69c66e200ce8dd5 100644 (file)
@@ -57,7 +57,7 @@ class ReverseGeocode
         $sSQL .= ' , ST_Distance(linegeo,'.$sPointSQL.') as distance';
         $sSQL .= ' FROM location_property_osmline';
         $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', linegeo, '.$fSearchDiam.')';
-        $sSQL .= ' and indexed_status = 0 ';
+        $sSQL .= ' and indexed_status = 0 and startnumber is not NULL ';
         $sSQL .= ' ORDER BY ST_distance('.$sPointSQL.', linegeo) ASC limit 1';
 
         return chksql(