
- Dataset Availability
- 2013-01-01T00:00:00Z–2022-01-01T00:00:00
- Dataset Provider
- Earth Engine Snippet
-
ee.ImageCollection("LANDSAT/LC08/C01/T1_ANNUAL_GREENEST_TOA")
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
Landsat 8 Collection 1 Tier 1 calibrated top-of-atmosphere (TOA) reflectance. Calibration coefficients are extracted from the image metadata. See Chander et al. (2009) for details on the TOA computation.
These composites are created from all the scenes in each annual period beginning from the first day of the year and continuing to the last day of the year. All the images from each year are included in the composite, with the greenest pixel as the composite value, where the greenest pixel means the pixel with the highest value of the Normalized Difference Vegetation Index (NDVI).
Bands
Bands
Name | Pixel Size | Wavelength | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
B1 |
30 meters | 0.43 - 0.45 μm | Coastal aerosol |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B2 |
30 meters | 0.45 - 0.51 μm | Blue |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B3 |
30 meters | 0.53 - 0.59 μm | Green |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B4 |
30 meters | 0.64 - 0.67 μm | Red |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B5 |
30 meters | 0.85 - 0.88 μm | Near infrared |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B6 |
30 meters | 1.57 - 1.65 μm | Shortwave infrared 1 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B7 |
30 meters | 2.11 - 2.29 μm | Shortwave infrared 2 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B8 |
15 meters | 0.52 - 0.90 μm | Band 8 Panchromatic |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B9 |
15 meters | 1.36 - 1.38 μm | Cirrus |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B10 |
30 meters | 10.60 - 11.19 μm | Thermal infrared 1, resampled from 100m to 30m |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
B11 |
30 meters | 11.50 - 12.51 μm | Thermal infrared 2, resampled from 100m to 30m |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BQA |
30 meters | Landsat Collection 1 QA Bitmask (See Landsat QA page) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
greenness |
30 meters | The pixel with the highest value of the Normalized Difference Vegetation Index (NDVI) for the year covered by the image. |
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)
// Import the dataset, filter to 2017, get the image. var dataset = ee.ImageCollection('LANDSAT/LC08/C01/T1_ANNUAL_GREENEST_TOA') .filterDate('2017-01-01', '2017-12-31') .first(); // Get the greenness band. var greenness = dataset.select('greenness'); // Get bands for true color RGB display. var trueColor = dataset.select(['B4', 'B3', 'B2']); // Define a mask for low greenness, make low greenness partially transparent. var mask = dataset.select('greenness').gt(0.1).remap([0, 1], [0.5, 1]); // Visualization parameters for greenness display. var greennessVis = { min: 0.1, max: 0.85, palette: ['fffdcd', 'e1cd73', 'aaac20', '5f920c', '187328', '144b2a', '172313'] }; // Visualization parameters for true color display. var trueColorVis = { min: 0.0, max: 0.4, gamma: 1.2, }; // Display the layers on the map with mask applied. Map.setCenter(43.4, 40.0, 7); Map.addLayer(trueColor.updateMask(mask), trueColorVis, 'True Color (432)', false); Map.addLayer(greenness.updateMask(mask), greennessVis, 'Greenness');