[generator][python] Supported postcodes_dataset.

This commit is contained in:
Maksim Andrianov 2019-10-04 17:27:58 +03:00 committed by Tatiana Yan
parent ceb37b4968
commit 5ed228c1db
4 changed files with 12 additions and 1 deletions

View file

@ -219,6 +219,10 @@ class Env:
def food_translations_path(self):
return os.path.join(self.intermediate_path, "translations_food.json")
@property
def postcodes_path(self):
return os.path.join(self.intermediate_path, "postcodes")
@property
def cities_boundaries_path(self):
return os.path.join(self.intermediate_path, "cities_boundaries.bin")

View file

@ -50,6 +50,7 @@ POPULARITY_URL= ""
SUBWAY_URL = ""
FOOD_URL = ""
FOOD_TRANSLATIONS_URL = ""
POSTCODES_URL = ""
SRTM_PATH = ""
STATS_TYPES_CONFIG = ""
@ -122,6 +123,7 @@ PROMO_CATALOG_CITIES_URL = _get_opt_path(config, "External", "PROMO_CATALOG_CITI
POPULARITY_URL = _get_opt_path(config, "External", "POPULARITY_URL", POPULARITY_URL)
SUBWAY_URL = _get_opt(config, "External", "SUBWAY_URL", SUBWAY_URL)
FOOD_URL = _get_opt(config, "External", "FOOD_URL", FOOD_URL)
POSTCODES_URL = _get_opt(config, "External", "POSTCODES_URL", POSTCODES_URL)
FOOD_TRANSLATIONS_URL = _get_opt(config, "External", "FOOD_TRANSLATIONS_URL",
FOOD_TRANSLATIONS_URL)
SRTM_PATH = _get_opt_path(config, "External", "SRTM_PATH", SRTM_PATH)

View file

@ -66,6 +66,7 @@ def stage_download_production_external(env):
settings.POPULARITY_URL: env.popularity_path,
settings.FOOD_URL: env.food_paths,
settings.FOOD_TRANSLATIONS_URL: env.food_translations_path,
settings.POSTCODES_URL: env.postcodes_path,
})
@ -120,7 +121,10 @@ def stage_index(env, country, **kwargs):
elif country == WORLD_COASTS_NAME:
stages.stage_coastline_index(env, country, **kwargs)
else:
stages.stage_index(env, country, **kwargs)
extra = {}
if env.is_accepted_stage(stage_download_production_external):
extra["postcodes_dataset"] = env.postcodes_path
stages.stage_index(env, country, **kwargs, **extra)
@country_stage

View file

@ -34,6 +34,7 @@ SUBWAY_URL: http://osm-subway.maps.me/mapsme/latest.json
# POPULARITY_URL:
# FOOD_URL:
# FOOD_TRANSLATIONS_URL:
# POSTCODES_URL:
# SRTM_PATH:
[Stats]