From 548ce79b99bd5064360336fd896b6dc5b9875758 Mon Sep 17 00:00:00 2001 From: Al Date: Sat, 15 Aug 2015 02:44:04 -0400 Subject: [PATCH] [fix] street addresses by language --- scripts/geodata/osm/osm_address_training_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/geodata/osm/osm_address_training_data.py b/scripts/geodata/osm/osm_address_training_data.py index b2aa8285..cd66926c 100644 --- a/scripts/geodata/osm/osm_address_training_data.py +++ b/scripts/geodata/osm/osm_address_training_data.py @@ -589,7 +589,7 @@ if __name__ == '__main__': # Can parallelize if args.streets_file: build_ways_training_data(language_rtree, args.streets_file, args.out_dir) - if args.address_file and not args.format_only: + if args.address_file and not args.format_only and not args.no_house_names: build_address_training_data(language_rtree, args.address_file, args.out_dir) if args.address_file and args.format_only: build_address_format_training_data(language_rtree, args.address_file, args.out_dir)