(env: Env, country: AnyStr, **kwargs)
| 170 | |
| 171 | @multithread_run_if_one_country |
| 172 | def _generate_common_index(env: Env, country: AnyStr, **kwargs): |
| 173 | run_gen_tool( |
| 174 | env.gen_tool, |
| 175 | out=env.get_subprocess_out(country), |
| 176 | err=env.get_subprocess_out(country), |
| 177 | data_path=env.paths.mwm_path, |
| 178 | intermediate_data_path=env.paths.intermediate_data_path, |
| 179 | cache_path=env.paths.cache_path, |
| 180 | user_resource_path=env.paths.user_resource_path, |
| 181 | node_storage=env.node_storage, |
| 182 | planet_version=env.planet_version, |
| 183 | generate_geometry=True, |
| 184 | generate_index=True, |
| 185 | output=country, |
| 186 | **kwargs, |
| 187 | ) |
| 188 | |
| 189 | |
| 190 | def step_index_world(env: Env, country: AnyStr, **kwargs): |
no test coverage detected