[GIS] way to convert GeoTIFF to DEM

convertdemgeotiff-tiff

Simple enough question. The NASA Aster data comes in GeoTIFF format, but the tool I'm using (Sketchup) only accepts DEM. Is there a way to convert?

I did a lot of searching, and only found the program GEOTIFF4, but it's obsolete, it's Windows-only, and source code is not available.

Best Answer

GDAL should be able to convert rasters between any usual formats:

gdal_translate -of SRTMHGT input.tif output.hgt

See

http://www.gdal.org/gdal_translate.html

http://osgeo-org.1560.x6.nabble.com/gdal-dev-Aster-tif-files-to-hgt-td3742884.html

for more details.

Related Question