Landsat Collection 2 Tier 1 Level 2 8-Day Composite

LANDSAT/COMPOSITES/C02/T1_L2_8DAY
Dataset Availability
1984-01-01T00:00:00Z–2025-11-09T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("LANDSAT/COMPOSITES/C02/T1_L2_8DAY")
Cadence
8 Days
Tags
landsat landsat-composite satellite-imagery sr usgs

Description

These Landsat Collection 2 Tier 1 Level 2 composites are made from Tier 1 Level 2 orthorectified scenes, and include the SR bands: blue, green, red, nir, swir1, swir2, and thermal.

These composites are created from all the scenes in each 8-day period beginning from the first day of the year and continuing to the 360th day of the year. The last composite of the year, beginning on day 361, will overlap the first composite of the following year by 3 days. All the images from each 8-day period are included in the composite, with the most recent pixel as the composite value.

Notes:

  • The code used to create the composites can be seen here.

  • Only daytime images with WRS_ROW < 122 are included.

  • For Landsat 7 , images after 2017-01-01 are excluded due to orbital drift.

  • For Landsat 8, images before 2013-05-01 are excluded due to pointing issues.

Bands

Pixel Size
30 meters

Bands

Name Units Pixel Size Description
blue meters

Blue (surface reflectance)

green meters

Green (surface reflectance)

red meters

Red (surface reflectance)

nir meters

Near infrared (surface reflectance)

swir1 meters

Shortwave infrared 1 (surface reflectance)

swir2 meters

Shortwave infrared 2 (surface reflectance)

thermal K meters

Surface temperature

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/COMPOSITES/C02/T1_L2_8DAY')
                  .filterDate('2023-01-01', '2023-03-01');
var rgb = dataset.select(['red', 'green', 'blue']);
var rgbVis = {
  min: 0.0,
  max: 0.3,
};
Map.setCenter(6.746, 46.529, 6);
Map.addLayer(rgb, rgbVis, 'RGB');
Open in Code Editor