| 11 | |
| 12 | |
| 13 | class GenTool: |
| 14 | OPTIONS = { |
| 15 | "dump_cities_boundaries": bool, |
| 16 | "emit_coasts": bool, |
| 17 | "fail_on_coasts": bool, |
| 18 | "generate_cameras": bool, |
| 19 | "generate_cities_boundaries": bool, |
| 20 | "generate_cities_ids": bool, |
| 21 | "generate_features": bool, |
| 22 | "generate_geo_objects_features": bool, |
| 23 | "generate_geo_objects_index": bool, |
| 24 | "generate_geometry": bool, |
| 25 | "generate_index": bool, |
| 26 | "generate_isolines_info": bool, |
| 27 | "generate_maxspeed": bool, |
| 28 | "generate_packed_borders": bool, |
| 29 | "generate_popular_places": bool, |
| 30 | "generate_region_features": bool, |
| 31 | "generate_regions": bool, |
| 32 | "generate_regions_kv": bool, |
| 33 | "generate_search_index": bool, |
| 34 | "generate_traffic_keys": bool, |
| 35 | "generate_world": bool, |
| 36 | "have_borders_for_whole_world": bool, |
| 37 | "make_city_roads": bool, |
| 38 | "make_coasts": bool, |
| 39 | "make_cross_mwm": bool, |
| 40 | "make_routing_index": bool, |
| 41 | "make_transit_cross_mwm": bool, |
| 42 | "make_transit_cross_mwm_experimental": bool, |
| 43 | "preprocess": bool, |
| 44 | "split_by_polygons": bool, |
| 45 | "stats_types": bool, |
| 46 | "version": bool, |
| 47 | "threads_count": int, |
| 48 | "booking_data": str, |
| 49 | "promo_catalog_cities": str, |
| 50 | "brands_data": str, |
| 51 | "brands_translations_data": str, |
| 52 | "cache_path": str, |
| 53 | "cities_boundaries_data": str, |
| 54 | "data_path": str, |
| 55 | "dump_wikipedia_urls": str, |
| 56 | "geo_objects_features": str, |
| 57 | "geo_objects_key_value": str, |
| 58 | "ids_without_addresses": str, |
| 59 | "idToWikidata": str, |
| 60 | "intermediate_data_path": str, |
| 61 | "isolines_path": str, |
| 62 | "addresses_path": str, |
| 63 | "nodes_list_path": str, |
| 64 | "node_storage": str, |
| 65 | "osm_file_name": str, |
| 66 | "osm_file_type": str, |
| 67 | "output": str, |
| 68 | "planet_version": str, |
| 69 | "popular_places_data": str, |
| 70 | "regions_features": str, |
no outgoing calls
no test coverage detected