Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMaksim Andrianov <maksimandrianov1@gmail.com>2019-06-15 18:12:52 +0300
committergmoryes <gmoryes@gmail.com>2019-06-17 13:35:30 +0300
commitdd53786c51a3146a8c010d166fd090189fcc5893 (patch)
treebb6648ed6ce29aa162ca9d39b09eb4a2713329a3 /tools
parent0fae3806b843a4ff87b18bf259c7bd0d52e3f85d (diff)
[python] Fixed stage_index_world.
Diffstat (limited to 'tools')
-rw-r--r--tools/python/maps_generator/generator/gen_tool.py1
-rw-r--r--tools/python/maps_generator/generator/maps_stages.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/python/maps_generator/generator/gen_tool.py b/tools/python/maps_generator/generator/gen_tool.py
index 48361fdb9a..4453774031 100644
--- a/tools/python/maps_generator/generator/gen_tool.py
+++ b/tools/python/maps_generator/generator/gen_tool.py
@@ -16,6 +16,7 @@ class GenTool:
"emit_coasts": bool,
"fail_on_coasts": bool,
"generate_cameras": bool,
+ "generate_cities_boundaries": bool,
"generate_features": bool,
"generate_geometry": bool,
"generate_geo_objects_features": bool,
diff --git a/tools/python/maps_generator/generator/maps_stages.py b/tools/python/maps_generator/generator/maps_stages.py
index c7e5e21137..a1af3243dc 100644
--- a/tools/python/maps_generator/generator/maps_stages.py
+++ b/tools/python/maps_generator/generator/maps_stages.py
@@ -38,8 +38,8 @@ def stage_index_world(env, country, **kwargs):
generate_geometry=True,
generate_index=True,
generate_search_index=True,
+ generate_cities_boundaries=True,
cities_boundaries_data=env.cities_boundaries_path,
- make_city_roads=True,
output=country,
**kwargs)