From: Sarah Hoffmann Date: Tue, 22 Nov 2022 16:17:38 +0000 (+0100) Subject: remove BDD test for tiger:county X-Git-Tag: v4.2.0~4^2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/41e8bddaa946e0ec6262f0342f92f43463c14751 remove BDD test for tiger:county We no longer rely on the import to strip the tag. --- diff --git a/settings/flex-base.lua b/settings/flex-base.lua index 19f4e27b..fe3ce32a 100644 --- a/settings/flex-base.lua +++ b/settings/flex-base.lua @@ -347,16 +347,6 @@ function process_tags(o) local is_interpolation = o:grab_address{match=INTERPOLATION_TAGS} > 0 - if ADD_TIGER_COUNTY then - local v = o:grab_tag('tiger:county') - if v ~= nil then - v, num = v:gsub(',.*', ' county') - if num == 0 then - v = v .. ' county' - end - o:set_address('tiger:county', v) - end - end o:grab_address{match=ADDRESS_TAGS} if is_interpolation then diff --git a/settings/import-extratags.lua b/settings/import-extratags.lua index 535af3c8..7b1880ef 100644 --- a/settings/import-extratags.lua +++ b/settings/import-extratags.lua @@ -123,8 +123,7 @@ HOUSENUMBER_TAGS = tag_match{keys = {'addr:housenumber', 'addr:conscriptionnumbe INTERPOLATION_TAGS = tag_match{keys = {'addr:interpolation'}} -ADDRESS_TAGS = tag_match{keys = {'addr:*', 'is_in:*'}} -ADD_TIGER_COUNTY = true +ADDRESS_TAGS = tag_match{keys = {'addr:*', 'is_in:*', 'tiger:county'}} SAVE_EXTRA_MAINS = true diff --git a/test/bdd/osm2pgsql/import/tags.feature b/test/bdd/osm2pgsql/import/tags.feature index 1f6857f2..60d241fe 100644 --- a/test/bdd/osm2pgsql/import/tags.feature +++ b/test/bdd/osm2pgsql/import/tags.feature @@ -166,20 +166,6 @@ Feature: Tag evaluation | N10003:place | place | island | - Scenario: Shorten tiger:county tags - When loading osm data - """ - n11001 Tplace=village,tiger:county=Feebourgh%2c%%20%AL - n11002 Tplace=village,addr:state=Alabama,tiger:county=Feebourgh%2c%%20%AL - n11003 Tplace=village,tiger:county=Feebourgh - """ - Then place contains exactly - | object | class | address | - | N11001 | place | 'tiger:county': 'Feebourgh county' | - | N11002 | place | 'tiger:county': 'Feebourgh county', 'state': 'Alabama' | - | N11003 | place | 'tiger:county': 'Feebourgh county' | - - Scenario: Building fallbacks When loading osm data """