Landsat Global Land Survey 2005, Landsat 5+7 scenes

LANDSAT/GLS2005
Dataset Availability
2003-07-29T00:00:00Z–2008-07-29T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("LANDSAT/GLS2005")
Tags
gls landsat radiance usgs

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

Resolution
30 meters

Bands

Name Wavelength Description
10 0.45 - 0.52 μm

Blue

20 0.52 - 0.60 μm

Green

30 0.63 - 0.69 μm

Red

40 0.76 - 0.90 μm

Near infrared

50 1.55 - 1.75 μm

Shortwave infrared 1

70 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)');
Open in Code Editor