(
tool: AnyStr,
in_planet: AnyStr,
out_planet: AnyStr,
output=subprocess.DEVNULL,
error=subprocess.DEVNULL,
)
| 47 | |
| 48 | |
| 49 | def convert_planet( |
| 50 | tool: AnyStr, |
| 51 | in_planet: AnyStr, |
| 52 | out_planet: AnyStr, |
| 53 | output=subprocess.DEVNULL, |
| 54 | error=subprocess.DEVNULL, |
| 55 | ): |
| 56 | osmconvert(tool, in_planet, out_planet, output=output, error=error) |
| 57 | write_md5sum(out_planet, md5_ext(out_planet)) |
| 58 | |
| 59 | |
| 60 | def step_download_and_convert_planet(env: Env, force_download: bool, **kwargs): |
no test coverage detected