[GIS] Batch Envi read and write to tif

batchenvigeotiff-tiff

Is there a way to batch read in ENVI standard image files (they have associated headers) and export them to a GeoTiff ?

I have a folder of ~500 images

Best Answer

GDAL solution. This is the base code.

gdal_translate -of GTiff input.envi output.tif

Here is the stack exchange answer to do all files in a folder.

loop GDAL translate

and here is the stack overflow solution.

loop gdal translate