-1

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

2
  • 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. Commented Oct 11, 2022 at 7:02
  • Maybe this related question helps Commented Oct 17, 2022 at 7:56

1 Answer 1

0

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
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.