QGIS에서도 쉽게 tiff로 된 raster files을 병합할 수 있다.

 

그런데 어떤 오류로 병합이 되지 않는 경우가 있는데, 이 경우 아래의 방법을 따라하면 빠르고 쉽게 tiff 파일들을 하나의 파일로 병합할 수 있다. 이 때 주의할 점은 tiff 파일들의 좌표계가 모두 같아야 한다는 것. 좌표계가 다르면 엉뚱하게 하나로 병합된다. 따라서 좌표계가 같은 파일들을 묶어서 병합하거나 이전에 tiff 파일들의 좌표계를 맞추어주어야 한다. 

 

출처는 여기: 

https://dominoc925.blogspot.com/2015/11/mosaic-large-number-of-geotiff-images.html

 

Mosaic a large number of GeoTiff images using GDAL

GDAL's gdalwarp function can be used to combine geo-referenced images into a large mosaic file. For a few files, it is relatively straightfo...

dominoc925.blogspot.com

 

간단히 포인트만 적자면, 

 

1. tiff 파일 이름이 쭉 적혀있는 리스트를 만든다. tiff 파일들이 모여있는 폴더에 가서 아래처럼 입력한다.

C:> dir /o/b *.tif > list.txt

 

2. gdalwarp을 이용해서 병합

gdalwarp -multi -wm 1000 --optfile list.txt output.tif

3. 병합된 tif 파일을 QGIS에서 확인

+ Recent posts