HGT is NASA's native SRTM elevation format: a raw array of 16-bit signed big-endian integers, a strict 1°×1° tile (1201×1201 for SRTM3 or 3601×3601 for SRTM1), no header — programs derive both the grid size and the georeferencing from the FILE NAME, which encodes the south-west corner (e.g. N55E037.hgt). On osm2cdr elevations come from the global Copernicus GLO-30 model (~30 m): the delivery is a ZIP archive holding the full degree tiles covering your area, each named by the SRTM convention. Where there is no coverage (ocean) cells honestly get the void value. The files are read by GDAL, QGIS, OsmAnd, Locus Map.
Βασικά χαρακτηριστικά

Σχετικά με τη μορφή SRTM HGT
HGT is the elevation format of the SRTM mission: a tile one degree by one degree, written as a raw array of sixteen-bit signed numbers, with no header at all. The program takes the georeferencing from the file name: N55E037.hgt means the tile whose south-west corner sits at 55 degrees north and 37 degrees east. The grid size tells you the version: 1201x1201 is SRTM3 with a step of about 90 meters, 3601x3601 is SRTM1 with a step of about 30 meters.
The format is taken when a program reads specifically .hgt: offline navigators for elevation profiles, terrain processing tools, simulators, your own scripts. The structure is so simple that the file can be parsed in a few lines of code without libraries.
Something important about our export: elevations come from the global Copernicus DEM GLO-30 model with a step of about 30 meters — the tiles hold real terrain, not a placeholder. The delivery is a ZIP archive: inside are the full degree tiles covering your area, each under its canonical name of the N55E037.hgt kind. They must not be renamed — the georeferencing lives in the file name. Tiles become flat only where there is no coverage at all, such as the open ocean.
Empty values are written as the number -32768 — the accepted SRTM notation for no data. The file is read directly by GDAL and QGIS, while offline navigators such as OsmAnd and Locus Map expect it in their own terrain folder. What the heights actually are: Copernicus GLO-30 is a surface model (DSM), not bare ground — over forest it is the tree canopy, over built-up areas the roofs. Acquired in 2010–2015 and released in 2021, so a fresh embankment or a demolished block will not show. The sea is written as zero (0 m) in the source tiles.
Ποιο πρόγραμμα ανοίγει αρχεία SRTM HGT
Τα ακόλουθα προγράμματα και εφαρμογές μπορούν να ανοίξουν, να επεξεργαστούν και να εργαστούν με αρχεία SRTM HGT Elevation Tile (.hgt.zip) που έχουν εξαχθεί από το OSM2CDR:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- No attributes
- A ZIP of full 1x1-degree raw SRTM .hgt tiles (16-bit signed big-endian, 1201x1201) covering the bbox, each named by its SW corner; heights from Copernicus DEM GLO-30, void where no coverage.
Ποιοι χρησιμοποιούν χάρτες SRTM HGT
Πώς να εξαγάγετε SRTM HGT
Πώς να το ανοίξετε μετά την εξαγωγή
- GDAL — gdalinfo -stats N55E037.hgt shows the grid size, the extent and the elevation range: the first check of whether the tile holds real terrain.
- QGIS (free) — drag the .hgt into the window as a raster, then Raster → Analysis → Hillshade or Contour to see the terrain in a familiar form.
- OsmAnd and Locus Map — put the file into the application's terrain folder on the device: the elevation profile will appear in routes offline.
- Conversion — gdal_translate -of GTiff N55E037.hgt dem.tif turns the tile into GeoTIFF if your tool does not understand the raw format.
Δημοφιλείς χάρτες σε SRTM HGT
Αποκτήστε εξαγωγές χαρτών SRTM HGT Elevation Tile
Κατεβάστε επαγγελματικούς χάρτες SRTM HGT από το OpenStreetMap. Άμεση δημιουργία, για οποιαδήποτε περιοχή.
Συχνές ερωτήσεις
Σχετικές μορφές
Συχνά εξάγονται μαζί
Related Articles
Cities: Skylines real world heightmap — build any real place from elevation data
How to get a real-world heightmap for Cities: Skylines, Unreal Engine 5 and Unity: what a 16-bit heightmap is, map sizes
guideSRTM/HGT elevation for QGIS without USGS: download by coordinates, make a GeoTIFF
Will USGS give you a GeoTIFF for QGIS? Yes — but only after signing up, and SRTM stops at 60°N. How to get elevation for
formatHGT — SRTM elevation tile format: Earth's terrain in 1°×1° chunks
Deep guide to HGT — NASA's SRTM elevation tile format. Structure, accuracy, GDAL workflow, how to combine with OSM expor