forked from hans/Nominatim
lower significance of postcodes in Singapure
Postcodes with 6 digits designate delivery points, i.e. houses.
This commit is contained in:
@@ -1018,6 +1018,13 @@ BEGIN
|
|||||||
NEW.rank_address := 5;
|
NEW.rank_address := 5;
|
||||||
END IF;
|
END IF;
|
||||||
|
|
||||||
|
ELSEIF NEW.calculated_country_code = 'sg' THEN
|
||||||
|
|
||||||
|
IF NEW.postcode ~ '^([0-9]{6})$' THEN
|
||||||
|
NEW.rank_search := 25;
|
||||||
|
NEW.rank_address := 11;
|
||||||
|
END IF;
|
||||||
|
|
||||||
ELSEIF NEW.calculated_country_code = 'de' THEN
|
ELSEIF NEW.calculated_country_code = 'de' THEN
|
||||||
|
|
||||||
IF NEW.postcode ~ '^([0-9]{5})$' THEN
|
IF NEW.postcode ~ '^([0-9]{5})$' THEN
|
||||||
|
|||||||
Reference in New Issue
Block a user