[GIS] Loading .hgt file in SAGA GIS

demhgtsaga

I want to display and work with the data from http://dds.cr.usgs.gov/srtm/version1/Eurasia/
in SAGA-GIS but am having difficulties knowing which module I should use to load the data.

As far as I know hgt files are raw binary data, so this should work with the Import Binary Raw/data but by simply loading the data into the import window, nothing happens meaning I have to define the correct parameters, but how?

Best Answer

You can use "gdal_translate" from GDAL to convert the HGT files for example to GeoTIFF format.

For example:

gdal_translate N45E009.hgt N45E009.tif

Related Question