AI-generated Key Takeaways
-
The GLS2005 dataset contains 9500 orthorectified leaf-on medium-resolution satellite images of Earth's land masses collected between 2004 and 2007, primarily using Landsat 5 and 7 data.
-
This dataset specifically includes six common bands (10, 20, 30, 40, 50, 70) from the Landsat 5 TM and Landsat 7 ETM+ sensors, with a pixel size of 30 meters.
-
Landsat datasets are in the public domain and can be used without copyright restriction, but acknowledgement of the U.S. Geological Survey as the source is encouraged.
-
The dataset is available through Google Earth Engine, a platform for geospatial data analysis and visualization, and is free for research, education, and nonprofit use.

- Dataset Availability
- 2003-07-29T00:00:00Z–2008-07-29T00:00:00Z
- Dataset Provider
- USGS
- Tags
Description
The GLS2005 data set is a collection of 9500 orthorectified leaf-on medium-resolution satellite images collected between 2004 and 2007 and covering the Earth's land masses. GLS2005 uses mainly Landsat 5 and gap-filled Landsat 7 data with EO-1 ALI and Terra ASTER data filling in any data holes.
This dataset contains images from just the L5 TM and L7 ETM+ sensors, and only the 6 bands that those two sensors have in common: 10, 20, 30, 40, 50, and 70.
Bands
Pixel Size
30 meters
Bands
Name | Pixel Size | Wavelength | Description |
---|---|---|---|
10 |
meters | 0.45 - 0.52 μm | Blue |
20 |
meters | 0.52 - 0.60 μm | Green |
30 |
meters | 0.63 - 0.69 μm | Red |
40 |
meters | 0.76 - 0.90 μm | Near infrared |
50 |
meters | 1.55 - 1.75 μm | Shortwave infrared 1 |
70 |
meters | 2.08 - 2.35 μm | Shortwave infrared 2 |
Terms of Use
Terms of Use
Landsat datasets are federally created data and therefore reside in the public domain and may be used, transferred, or reproduced without copyright restriction.
Acknowledgement or credit of the USGS as data source should be provided by including a line of text citation such as the example shown below.
(Product, Image, Photograph, or Dataset Name) courtesy of the U.S. Geological Survey
Example: Landsat-7 image courtesy of the U.S. Geological Survey
See the USGS Visual Identity System Guidance for further details on proper citation and acknowledgement of USGS products.
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('LANDSAT/GLS2005'); var trueColor321 = dataset.select(['30', '20', '10']); Map.setCenter(6.746, 46.529, 6); Map.addLayer(trueColor321, {}, 'True Color (321)');