I have several consecutive geotiffs that I want to merge .I use GDAL to try out but the final geotiff has no color, only black and white. I want to ask if there is a python plug-in that can directly synthesize multiple Geotiffs. Or how to use GDAL to synthesize multiple Geotiffs
-
Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking.Community– Community Bot2022-10-11 07:02:29 +00:00Commented Oct 11, 2022 at 7:02
-
Maybe this related question helpsVal– Val2022-10-17 07:56:05 +00:00Commented Oct 17, 2022 at 7:56
Add a comment
|
1 Answer
You can build a VRT and check in QGIS if looks like expected. If the VRT is fine then you can translate the VRT into TIFF file.
gdalbuildvrt _merged.vrt *.tif
gdal_translate -of GTiff -co COMPRESS=LZW -co BIGTIFF=YES -co TILED=YES _merged.vrt _merged.tif