NASA SRTM Digital Elevation 30m

  • The SRTM digital elevation data, a NASA JPL product, provides near-global elevation models at a 1 arc-second (30m) resolution.

  • This SRTM V3 (SRTM Plus) dataset has been void-filled using open-source data (ASTER GDEM2, GMTED2010, and NED).

  • The dataset includes a single band, 'elevation', representing elevation in meters with an estimated range of -10 to 6500.

  • Images and video on JPL public websites may generally be used without prior permission, subject to the JPL Image Use Policy.

  • The SRTM data is freely available for research, education, and non-profit use through the Google Earth Engine platform.

USGS/SRTMGL1_003
Dataset Availability
2000-02-11T00:00:00Z–2000-02-22T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("USGS/SRTMGL1_003")
Tags
dem elevation elevation-topography geophysical nasa srtm topography usgs

Description

The Shuttle Radar Topography Mission (SRTM, see Farr et al. 2007) digital elevation data is an international research effort that obtained digital elevation models on a near-global scale. This SRTM V3 product (SRTM Plus) is provided by NASA JPL at a resolution of 1 arc-second (approximately 30m).

This dataset has undergone a void-filling process using open-source data (ASTER GDEM2, GMTED2010, and NED), as opposed to other versions that contain voids or have been void-filled with commercial sources. For more information on the different versions see the SRTM Quick Guide.

Documentation:

Bands

Bands

Name Units Min Max Pixel Size Description
elevation m -10* 6500* 30 meters

Elevation

* estimated min or max value

Terms of Use

Terms of Use

Unless otherwise noted, images and video on JPL public web sites (public sites ending with a jpl.nasa.gov address) may be used for any purpose without prior permission. For more information and exceptions visit the JPL Image Use Policy site.

Citations

Citations:
  • Farr, T.G., Rosen, P.A., Caro, E., Crippen, R., Duren, R., Hensley, S., Kobrick, M., Paller, M., Rodriguez, E., Roth, L., Seal, D., Shaffer, S., Shimada, J., Umland, J., Werner, M., Oskin, M., Burbank, D., and Alsdorf, D.E., 2007, The shuttle radar topography mission: Reviews of Geophysics, v. 45, no. 2, RG2004, at https://doi.org/10.1029/2005RG000183.

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('USGS/SRTMGL1_003');
var elevation = dataset.select('elevation');
var slope = ee.Terrain.slope(elevation);
Map.setCenter(-112.8598, 36.2841, 10);
Map.addLayer(slope, {min: 0, max: 60}, 'slope');
Open in Code Editor