[mv] Moving gazetteers into their own module

This commit is contained in:
Al
2016-01-22 03:15:56 -05:00
parent 5a68e7aeef
commit b22646ee30
3 changed files with 199 additions and 186 deletions

View File

@@ -54,6 +54,7 @@ sys.path.append(os.path.realpath(os.path.join(os.pardir, os.pardir)))
sys.path.append(os.path.realpath(os.path.join(os.pardir, os.pardir, os.pardir, 'python')))
from geodata.address_expansions.gazetteers import *
from geodata.coordinates.conversion import *
from geodata.countries.country_names import *
from geodata.geonames.db import GeoNamesDB
@@ -1591,6 +1592,7 @@ if __name__ == '__main__':
init_country_names()
init_languages()
init_disambiguation()
init_gazetteers()
language_rtree = LanguagePolygonIndex.load(args.language_rtree_dir)
osm_rtree = None
@@ -1610,8 +1612,6 @@ if __name__ == '__main__':
if args.geonames_db:
geonames = GeoNamesDB(args.geonames_db)
street_types_gazetteer.configure()
# Can parallelize
if args.streets_file:
build_ways_training_data(language_rtree, args.streets_file, args.out_dir)