mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-26 13:27:52 +03:00
no longer allow fuzzy assignment of country
The fallback country boundaries already contain a sufficiently large part of the water area, so there is no need to extend the country assignment even more. Features outside countries should not show a country in their address.
This commit is contained in:
parent
5ff35d9984
commit
739fe1c2c4
@ -170,15 +170,6 @@ BEGIN
|
|||||||
|
|
||||||
-- RAISE WARNING 'near osm fallback: %', ST_AsText(place_centre);
|
-- 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;
|
RETURN NULL;
|
||||||
END;
|
END;
|
||||||
$$
|
$$
|
||||||
|
Loading…
Reference in New Issue
Block a user