From 813f29f2995c3c0067df95c0097cc64a0cb6bedb Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 2 Aug 2016 16:29:34 -0400 Subject: [PATCH] [osm] Removing the call to normalize_place_names in place data formatting as we should be able to trust the places more than the addresses --- scripts/geodata/osm/formatter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/geodata/osm/formatter.py b/scripts/geodata/osm/formatter.py index c27138ad..041db6ae 100644 --- a/scripts/geodata/osm/formatter.py +++ b/scripts/geodata/osm/formatter.py @@ -560,7 +560,6 @@ class OSMAddressFormatter(object): revised_address_components = place_config.dropout_components(address_components, osm_components, country=country, population=population) revised_address_components[component_name] = address_components[component_name] self.components.drop_invalid_components(revised_address_components) - self.components.normalize_place_names(revised_address_components, osm_components, country=country, languages=all_local_languages) self.components.replace_name_affixes(revised_address_components, language) self.components.replace_names(revised_address_components)