(env: Env, country: AnyStr, **kwargs)
| 340 | |
| 341 | |
| 342 | def step_srtm(env: Env, country: AnyStr, **kwargs): |
| 343 | run_gen_tool_with_recovery_country( |
| 344 | env, |
| 345 | env.gen_tool, |
| 346 | out=env.get_subprocess_out(country), |
| 347 | err=env.get_subprocess_out(country), |
| 348 | data_path=env.paths.mwm_path, |
| 349 | intermediate_data_path=env.paths.intermediate_data_path, |
| 350 | cache_path=env.paths.cache_path, |
| 351 | user_resource_path=env.paths.user_resource_path, |
| 352 | srtm_path=env.paths.srtm_path(), |
| 353 | output=country, |
| 354 | **kwargs, |
| 355 | ) |
| 356 | |
| 357 | |
| 358 | def step_isolines_info(env: Env, country: AnyStr, **kwargs): |
nothing calls this directly
no test coverage detected