GDAL Merge – How to Merge Geotiffs with a VRT File

gdal

I have heard that I can use a vrt file to merge mulitple geotiffs into one?

what is the syntax? gdal_tranlsate -of VRT file1.tif file2.tif file2.tif

Something like this?

Best Answer

No, you need to use gdalbuildvrt The instructions on the page are pretty clear, but to save you a mouse click, one of the examples is:

gdalbuildvrt doq_index.vrt doq/*.tif
Related Question