forked from hans/Nominatim
Merge pull request #3516 from lonvia/fixed-country-order
Ensure consistent country assignments
This commit is contained in:
@@ -164,18 +164,44 @@ CREATE OR REPLACE FUNCTION get_country_code(place geometry)
|
|||||||
DECLARE
|
DECLARE
|
||||||
place_centre GEOMETRY;
|
place_centre GEOMETRY;
|
||||||
nearcountry RECORD;
|
nearcountry RECORD;
|
||||||
|
countries TEXT[];
|
||||||
BEGIN
|
BEGIN
|
||||||
place_centre := ST_PointOnSurface(place);
|
place_centre := ST_PointOnSurface(place);
|
||||||
|
|
||||||
-- RAISE WARNING 'get_country_code, start: %', ST_AsText(place_centre);
|
-- RAISE WARNING 'get_country_code, start: %', ST_AsText(place_centre);
|
||||||
|
|
||||||
-- Try for a OSM polygon
|
-- Try for a OSM polygon
|
||||||
FOR nearcountry IN
|
SELECT array_agg(country_code) FROM location_area_country
|
||||||
SELECT country_code from location_area_country
|
WHERE country_code is not null and st_covers(geometry, place_centre)
|
||||||
WHERE country_code is not null and st_covers(geometry, place_centre) limit 1
|
INTO countries;
|
||||||
LOOP
|
|
||||||
RETURN nearcountry.country_code;
|
IF array_length(countries, 1) = 1 THEN
|
||||||
END LOOP;
|
RETURN countries[1];
|
||||||
|
END IF;
|
||||||
|
|
||||||
|
IF array_length(countries, 1) > 1 THEN
|
||||||
|
-- more than one country found, confirm against the fallback data what to choose
|
||||||
|
FOR nearcountry IN
|
||||||
|
SELECT country_code FROM country_osm_grid
|
||||||
|
WHERE ST_Covers(geometry, place_centre) AND country_code = ANY(countries)
|
||||||
|
ORDER BY area ASC
|
||||||
|
LOOP
|
||||||
|
RETURN nearcountry.country_code;
|
||||||
|
END LOOP;
|
||||||
|
-- Still nothing? Choose the country code with the smallest partition number.
|
||||||
|
-- And failing that, just go by the alphabet.
|
||||||
|
FOR nearcountry IN
|
||||||
|
SELECT cc,
|
||||||
|
(SELECT partition FROM country_name WHERE country_code = cc) as partition
|
||||||
|
FROM unnest(countries) cc
|
||||||
|
ORDER BY partition, cc
|
||||||
|
LOOP
|
||||||
|
RETURN nearcountry.cc;
|
||||||
|
END LOOP;
|
||||||
|
|
||||||
|
-- Should never be reached.
|
||||||
|
RETURN countries[1];
|
||||||
|
END IF;
|
||||||
|
|
||||||
-- RAISE WARNING 'osm fallback: %', ST_AsText(place_centre);
|
-- RAISE WARNING 'osm fallback: %', ST_AsText(place_centre);
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,8 @@ Feature: Country handling
|
|||||||
Then results contain
|
Then results contain
|
||||||
| osm | display_name |
|
| osm | display_name |
|
||||||
| N1 | Wenig, Loudou |
|
| N1 | Wenig, Loudou |
|
||||||
Scenario: OSM country relations outside expected boundaries are ignored
|
|
||||||
|
Scenario: OSM country relations outside expected boundaries are ignored for naming
|
||||||
Given the grid
|
Given the grid
|
||||||
| 1 | | 2 |
|
| 1 | | 2 |
|
||||||
| 4 | | 3 |
|
| 4 | | 3 |
|
||||||
@@ -37,6 +38,7 @@ Feature: Country handling
|
|||||||
Then results contain
|
Then results contain
|
||||||
| osm | display_name |
|
| osm | display_name |
|
||||||
| N1 | Wenig, Germany |
|
| N1 | Wenig, Germany |
|
||||||
|
|
||||||
Scenario: Pre-defined country names are used
|
Scenario: Pre-defined country names are used
|
||||||
Given the grid with origin CH
|
Given the grid with origin CH
|
||||||
| 1 |
|
| 1 |
|
||||||
@@ -50,3 +52,41 @@ Feature: Country handling
|
|||||||
Then results contain
|
Then results contain
|
||||||
| osm | display_name |
|
| osm | display_name |
|
||||||
| N1 | Ingb, Switzerland |
|
| N1 | Ingb, Switzerland |
|
||||||
|
|
||||||
|
Scenario: For overlapping countries, pre-defined countries are tie-breakers
|
||||||
|
Given the grid with origin US
|
||||||
|
| 1 | | 2 | | 5 |
|
||||||
|
| | 9 | | 8 | |
|
||||||
|
| 4 | | 3 | | 6 |
|
||||||
|
Given the named places
|
||||||
|
| osm | class | type | admin | country | geometry |
|
||||||
|
| R1 | boundary | administrative | 2 | de | (1,5,6,4,1) |
|
||||||
|
| R2 | boundary | administrative | 2 | us | (1,2,3,4,1) |
|
||||||
|
And the named places
|
||||||
|
| osm | class | type | geometry |
|
||||||
|
| N1 | place | town | 9 |
|
||||||
|
| N2 | place | town | 8 |
|
||||||
|
When importing
|
||||||
|
Then placex contains
|
||||||
|
| object | country_code |
|
||||||
|
| N1 | us |
|
||||||
|
| N2 | de |
|
||||||
|
|
||||||
|
Scenario: For overlapping countries outside pre-define countries prefer smaller partition
|
||||||
|
Given the grid with origin US
|
||||||
|
| 1 | | 2 | | 5 |
|
||||||
|
| | 9 | | 8 | |
|
||||||
|
| 4 | | 3 | | 6 |
|
||||||
|
Given the named places
|
||||||
|
| osm | class | type | admin | country | geometry |
|
||||||
|
| R1 | boundary | administrative | 2 | ch | (1,5,6,4,1) |
|
||||||
|
| R2 | boundary | administrative | 2 | de | (1,2,3,4,1) |
|
||||||
|
And the named places
|
||||||
|
| osm | class | type | geometry |
|
||||||
|
| N1 | place | town | 9 |
|
||||||
|
| N2 | place | town | 8 |
|
||||||
|
When importing
|
||||||
|
Then placex contains
|
||||||
|
| object | country_code |
|
||||||
|
| N1 | de |
|
||||||
|
| N2 | ch |
|
||||||
|
|||||||
Reference in New Issue
Block a user