add support for Irish townlands

To work properly, osm2pgsql needs to be updated to the latest version.
This commit is contained in:
Sarah Hoffmann 2012-04-20 22:13:03 +02:00
parent aaca88d5a6
commit 6522e531e4

View File

@ -1037,6 +1037,10 @@ BEGIN
ELSEIF NEW.type in ('farm','locality','islet','isolated_dwelling','mountain_pass') THEN
NEW.rank_search := 20;
NEW.rank_address := 0;
-- Irish townlands, tagged as place=locality and locality=townland
IF (NEW.extratags -> 'locality') = 'townland' THEN
NEW.rank_address := 20;
END IF;
ELSEIF NEW.type in ('hall_of_residence','neighbourhood','housing_estate','nature_reserve') THEN
NEW.rank_search := 22;
NEW.rank_address := 22;