Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GDAL の実行時に cmd ウィンドウを無効にすることはできますか? 「サイレントモード」のようなもの。
私が使う :
os.system('gdal_translate -of GTiff %s %s'%(in1, out1))
この問題は、subprocessモジュール .egに切り替えて引数subprocess.callを使用することで解決できます。shell = Trueこれは StackOverflow から、より具体的にはこの投稿から取得しました。
subprocess
subprocess.call
shell = True