remove BDD test for tiger:county

We no longer rely on the import to strip the tag.
This commit is contained in:
Sarah Hoffmann
2022-11-22 17:17:38 +01:00
parent fd3dec8efe
commit 41e8bddaa9
3 changed files with 1 additions and 26 deletions

View File

@@ -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

View File

@@ -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