[GIS] Convert from img to geotiff

convertgeotiff-tiff

Using gdal translate, would it be possible to convert from IMG to GeoTIFF?

We have very little experience with gdal and would really be grateful for some insight.

Best Answer

gdal_translate -of GTiff  C:\temp\input\a.img   C:\temp\output\a.tif

and the batch option

GDAL_translate: converting ESRI GRID to Geotiff in batch

'-of GTiff' this part is probably not even required as this is the default but will do no harm.

Related Question