I have several thousands of small rasters, kb size, tens or hundreds of pixels most of them. Batch command of gdal_merge.py can't take all the files at once, so I am doing partial merges of chunks of 500 images, and that's relatively fast.
But when I try to merge the partial merges it takes way too much. In one even gdal_merge.py gave up and returned Killed.
Has anyone experienced something similar, and found an optimization?
Alternatives to gdal_merge.py are welcome
gdalbuildvrtandgdal_translate -of GTiffon that VRT. I had faster results comparted togdal_mergewith huge files. – pLumo Dec 17 '18 at 15:21vrtfile derived fromgdal_merge.py -of VRTis fine too as input. – pLumo Dec 17 '18 at 15:59