mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-16 15:47:58 +00:00
Merge pull request #2920 from lonvia/no-postcode-for-rivers
Do not assign postcodes to long linear features
This commit is contained in:
@@ -1230,7 +1230,11 @@ BEGIN
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
IF NEW.postcode is null AND NEW.rank_search > 8 THEN
|
IF NEW.postcode is null AND NEW.rank_search > 8
|
||||||
|
AND (NEW.rank_address > 0
|
||||||
|
OR ST_GeometryType(NEW.geometry) not in ('ST_LineString','ST_MultiLineString')
|
||||||
|
OR ST_Length(NEW.geometry) < 0.02)
|
||||||
|
THEN
|
||||||
NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
|
NEW.postcode := get_nearest_postcode(NEW.country_code, NEW.geometry);
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user