-1

I have a multi-band GeoTIFF (with 8 bands), and I want to extract first 3 band and 7th band from that image and export them as TIFF image using GDAL.

Bands details given by dataset is shown in following image enter image description here

Vince
  • 20,017
  • 15
  • 45
  • 64

1 Answers1

2

Do something like this:

gdal_translate -b 1 -b 2 -b 3 -b 7 input.tif output.tif
TomazicM
  • 25,601
  • 22
  • 29
  • 39