java - Python子进程不传递参数

标签 java python subprocess osmosis

我想使用 osmosis 自动化从大型 OSM 文件中提取数据的过程。 ,但我在运行此代码片段以自动从 OSM 数据创建图 block 时遇到问题:

import sys
import subprocess

def create_tile_pbf(pbf_file, tile_lng, tile_lat):
    """Runs the osmosis tile creator"""
    app_path = "osmosis/bin/"
    app = "osmosis.bat"
    proc = subprocess.Popen([
        app_path + app,
        "--read-pbf", pbf_file,
        "--bounding-box",
        "top=%d" % (tile_lat+1),
        "left=%d" % (tile_lng),
        "bottom=%d" % (tile_lat),
        "right=%d" % (tile_lng+1),
        "--write-pbf", "someotherfile.osm.pbf"
        ], cwd=app_path, shell=True)
    # Poll the proc to see if it is finished
    while proc.returncode is None:
        proc.communicate()
        proc.poll()
    print(">> Terminated\n")

if __name__ == "__main__":
    print("Args were: " + str(sys.argv) + "\n")
    create_tile_pbf("./somefile.osm.pbf", 7, 46)

我尝试过使用和不使用 shell=True,我尝试将所有参数连接到一个字符串中。但执行时总是出现这个错误:

Nov 03, 2017 2:26:28 PM org.openstreetmap.osmosis.core.Osmosis main
SEVERE: Execution aborted.
org.openstreetmap.osmosis.core.OsmosisRuntimeException: Expected argument 1 to be an option or task name.
        at org.openstreetmap.osmosis.core.cli.CommandLineParser.parse(CommandLineParser.java:79)
        at org.openstreetmap.osmosis.core.Osmosis.run(Osmosis.java:74)
        at org.openstreetmap.osmosis.core.Osmosis.main(Osmosis.java:37)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:330)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:238)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
        at org.codehaus.classworlds.Launcher.main(Launcher.java:47)

但是当使用 Powershell 或命令提示符运行命令时,它就像一个魅力。

.\osmosis.bat --read-pbf .\somefile.osm.pbf --bounding-box top=47 left=7 bottom=46 right=8 --write-pbf someotherfile.osm.pbf

我正在运行 Windows 10 1703 64 位和 Anaconda 4.3.30。

最佳答案

脚本和命令提示符交互之间的区别是 osmosis/bin/osmosis.bat.\osmosis.bat。由于对 Popen() 的调用已包含 cwd 选项,因此您无需再次指定目录。这意味着您的电话应该是:

proc = subprocess.Popen([
    app,                                    # <== No app_path here
    "--read-pbf", pbf_file,
    "--bounding-box",
    "top=%d" % (tile_lat+1),
    "left=%d" % (tile_lng),
    "bottom=%d" % (tile_lat),
    "right=%d" % (tile_lng+1),
    "--write-pbf", "someotherfile.osm.pbf"
    ], cwd=app_path, shell=True)           # <== because of this cwd 

关于java - Python子进程不传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47097363/

相关文章:

java - hibernate 确实很慢。如何让它更快?

python使ssl崩溃

python - 针对 Windows 域的分散式身份验证

python - 为什么 shell=True 和 shell=False 做同样的事情?

python - 如何用子进程捕获 FFMPEG 异常?

java - 如何实现 Luhn 算法?

java - 使用默认的emptyList惰性构造ArrayList以获得更好的性能

python - Pandas 可以推断 DataFrame 名称吗?

python - 在输出中打印的路径

java - 初学者java顺序递增设置变量并重置计数