
- Dataset Availability
- 1972-01-01T00:00:00 - 1983-02-10T00:00:00
- Dataset Provider
- USGS
- Earth Engine Snippet
-
ee.ImageCollection("LANDSAT/GLS1975")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
Description
The Global Land Survey (GLS) 1975 is a global collection of imagery from the Landsat Multispectral Scanner (MSS). Most scenes were acquired by Landsat 1-3 in 1972-1983. A few gaps in the Landsat 1-3 data have been filled with scenes acquired by Landsat 4-5 during the years 1982-1987. These data contain 4 spectral bands: Green, Red, an NIR band, and a SWIR band. In the typical False-color presentation, the images appear red because the NIR band, displayed as red, highlights vegetation.
Bands
Resolution
60 meters
Bands
Name | Wavelength | Description |
---|---|---|
10 |
500-600 nm | Green |
20 |
600-700 nm | Red |
30 |
700-800 nm | Near infrared |
40 |
800-1100 nm | Short-wavelength infrared |
Terms of Use
Terms of Use
There are no restrictions on Landsat data, and it can be used or redistributed as desired. However, a statement of the data source when citing, copying, or reprinting USGS Landsat data or images is recommended.
Citations
"GLS 1975 image courtesy of the U.S. Geological Survey"
Explore in Earth Engine
var dataset = ee.ImageCollection('LANDSAT/GLS1975'); var falseColor = dataset.select(['30', '20', '10']); var falseColorVis = { gamma: 1.6, }; Map.setCenter(44.517, 25.998, 5); Map.addLayer(falseColor, falseColorVis, 'False Color');