Merge pull request #1972 from lonvia/exclude-unnamed-highway-areas

Exclude unnamed highway areas
This commit is contained in:
Sarah Hoffmann
2020-09-23 09:20:16 +02:00
committed by GitHub
4 changed files with 10 additions and 4 deletions

View File

@@ -426,7 +426,12 @@ BEGIN
NEW.name := hstore('ref', NEW.address->'postcode');
ELSEIF NEW.class = 'boundary' AND NOT is_area THEN
ELSEIF NEW.class = 'highway' AND is_area AND NEW.name is null
AND NEW.extratags ? 'area' AND NEW.extratags->'area' = 'yes'
THEN
RETURN NULL;
ELSEIF NEW.class = 'boundary' AND NOT is_area
THEN
RETURN NULL;
ELSEIF NEW.class = 'boundary' AND NEW.type = 'administrative'
AND NEW.admin_level <= 4 AND NEW.osm_type = 'W'