Skip to content

SRTM

Overview

SRTM is a near-global elevation dataset, with coverage from -60 to 60 degrees latitude.

SRTM comes in multiple resolutions. The highest resolution is 1 arc-second, which corresponds to a resolution of about 30m at the equator. The 3 arc-second (90m) version is also frequently used.

Coverage

SRTM has coverage from -60 to 60 degrees latitude. The dataset is released in 1 degree tiles. Ocean areas covered by a tile have an elevation of 0m. Open Topo Data will return null for locations not covered by a tile.

SRTM coverage
SRTM coverage (green area).

Downloading 30m SRTM

Make a new folder for the dataset:

mkdir ./data/srtm30m

Download the files from USGS into ./data/srtm30m. Before downloading you'll need to register an account at earthdata.nasa.gov. Using these credentials for downloading is a little tricky, but luckily Earthdata provide download scripts in multiple different languages, the Python ones worked well for me.

You want the xxxxxxx.SRTMGL1.hgt.zip files. To make downloading a bit easier, here's a list of the 14,297 URLs: srtm30m_urls.txt.

If those scripts aren't working for you, an @SamDurand (#70) had success with logging into Earthdata in your browser, then automating the browser to download the files:

import webbrowser
import time

with open("srtm30m_urls.txt", "r") as f:
    url_list = f.read().split("\n")

for i, url in enumerate(url_list):
    webbrowser.open_new_tab(url)
    if i % 100 == 0:
        time.sleep(5) # pause 5s every 100 it to avoid rate limiting.

Adding 30m SRTM to Open Topo Data

Create a config.yaml file:

datasets:
- name: srtm30m
  path: data/srtm30m/

Rebuild to enable the new dataset at localhost:5000/v1/srtm30m.

make build && make run

Extra performance

.hgt.zip files are extremely slow for random reads. I got a 10x read speedup and a 10% size reduction from converting to a compressed geotiff:

gdal_translate -co COMPRESS=DEFLATE -co PREDICTOR=2 {hgtzip_filename} {tif_filename}

Unsupported file format

If you're leaving the tiles in .hgt.zip format, be aware that 16 of the files are not able to be read by gdal. There are instructions for fixing those zip files.

Adding 90m SRTM to Open Topo Data

The process is the same as for 30m. The dataset is hosted on USGS here, and a list of the tile urls is here: srtm90m_urls.txt.

Public API

The Open Topo Data public API lets you query SRTM 30m for free:

curl https://api.opentopodata.org/v1/srtm30m?locations=57.688709,11.976404
{
  "results": [
    {
      "elevation": 55.0, 
      "location": {
        "lat": 57.688709, 
        "lng": 11.976404
      },
      "dataset": "srtm30m"
    }
  ], 
  "status": "OK"
}

as well as SRTM 90m:

curl https://api.opentopodata.org/v1/srtm90m?locations=57.688709,11.976404
{
  "results": [
    {
      "elevation": 55.0, 
      "location": {
        "lat": 57.688709, 
        "lng": 11.976404
      },
      "dataset": "srtm90m"
    }
  ], 
  "status": "OK"
}

The public API uses Version 3 of SRTM for both resolutions.