]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #2709 from lonvia/less-strict-country-assignment
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 11 May 2022 14:24:47 +0000 (16:24 +0200)
committerGitHub <noreply@github.com>
Wed, 11 May 2022 14:24:47 +0000 (16:24 +0200)
Be more strict with country assignments

lib-sql/functions/utils.sql

index d7fdae3d57f8c06df357514e6a2e24d3a445413f..ad262670092760521bfa677ba9a40ac4d1353037 100644 (file)
@@ -170,15 +170,6 @@ BEGIN
 
 -- RAISE WARNING 'near osm fallback: %', ST_AsText(place_centre);
 
-  -- 
-  FOR nearcountry IN
-    SELECT country_code from country_osm_grid
-    WHERE st_dwithin(geometry, place_centre, 0.5)
-    ORDER BY st_distance(geometry, place_centre) asc, area asc limit 1
-  LOOP
-    RETURN nearcountry.country_code;
-  END LOOP;
-
   RETURN NULL;
 END;
 $$