]> git.openstreetmap.org Git - nominatim.git/commitdiff
experimental: disable early break from search loop
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 6 Oct 2020 08:32:55 +0000 (10:32 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 6 Oct 2020 08:32:55 +0000 (10:32 +0200)
Go through all available search variants instead of breaking
out early. Due to the larger database there are a lot of good
interpretations (in particular partial searches) ranked lower.

lib/Geocode.php

index 7ab53d97812a5cbf640672e93f0e963f8c6f10eb..af3262f9e7e866780be904fa7b870aed52471b33 100644 (file)
@@ -770,7 +770,7 @@ class Geocode
                         }
                     }
 
-                    if ($iQueryLoop > 20) break;
+                    //if ($iQueryLoop > 20) break;
                 }
 
                 if (!empty($aResults)) {
@@ -842,8 +842,8 @@ class Geocode
                 }
 
                 if (!empty($aResults)) break;
-                if ($iGroupLoop > 4) break;
-                if ($iQueryLoop > 30) break;
+                //if ($iGroupLoop > 4) break;
+                //if ($iQueryLoop > 30) break;
             }
         } else {
             // Just interpret as a reverse geocode