LoginSignup
7
1

More than 5 years have passed since last update.

複数のGeotiffを1枚にマージする(gdal_merge.py)

Posted at

自分用メモ。
参考:ここ公式マニュアル

バーチャルラスターをつくるのが望ましいもののどうしても一枚の画像にマージしたいときもある。

gdal_merge.py -o OUTPUT.tif -ot Float32 -co COMPRESS=LZW -co BIGTIFF=YES INPUT1.tif INPUT2.tif INPUT3.tif

-otはByte, Int16なども可
-co COMPRESS=LZW はしないと圧縮されないためとんでもない大きさのtifが生成される
-co BIGTIFF=YES 出力データが4GB以上の際は必須

7
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
1