Landsat Collection 2 tiers

Date modified: 22 December 2021

The Landsat Collection 2 tiers are the inventory structure used to categorise data products based on the data quality and level of processing. The purpose of the tiers is to support easier identification of suitable scenes for time-series pixel-level analysis and data stacking.

Background

The Landsat Collection 2 scenes are evaluated and categorised into 3 tiers:

  • Real time - not supported by DE Africa > This tier contains newly acquired imagery as all the scenes go here immediately after acquisition. After the final calibration, the scenes are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time Tier. The radial Root Mean Square Error (RMSE) threshold of 12 meters for the georegestration image-to-image tolerances is used to determine whether the data goes into Tier 1 or Tier 2. Landsat 8 scenes are placed into the final tier within 14 to 16 days after acquisition while Landsat 7 scenes are placed within 26 days after acquisition.

  • Tier 1 - DE Africa Sandbox Analysis-Ready Data default > Landsat scenes whose RMSE is less than or equal to 12 metres are categorized into Tier 1. This tier contains Landsat scenes with the highest available radiometric and positional data quality and are considered suitable for time-series analysis.

  • Tier 2 - Can be accessed through DE Africa Sandbox > Landsat scenes whose RMSE is greater than 12 metres are categorized into Tier 2. This tier contains all the scenes that fail to meet the Tier 1 criteria during processing. This failure to meet the RMSE 12 meter threshold could be due to less accurate orbital information (specific to older Landsat sensors), significant cloud cover which affects the radiometric calibration and insufficient ground control points within the scenes.

Landsat data tiers in Digital Earth Africa

Digital Earth Africa (DE Africa) provides free and open access to Landsat Collection 2 Level-2 products over Africa. The Landsat archive is produced and provided by the United States Geological Survey (USGS).

Digital Earth Africa Landsat Collection 2 Level-2 includes: * Surface Reflectance * Surface Temperature

Tiers in the Digital Earth Africa Map

Access the Digital Earth Africa Map

All available (Tier 1 and Tier 2) data is displayed when selecting Landsat daily surface reflectance or Landsat daily surface temperature.

Tiers in the Digital Earth Africa Sandbox

Access the Digital Earth Africa Sandbox

Loading Landsat Analysis-Ready Data using the load_ard function loads only Tier 1 data. Tier 1 data is optimised for time-series analysis.

Tier 2 data can be accessed using the datacube.Datacube.load function. By default, datacube.Datacube.load loads all available (Tier 1 and Tier 2) data. The tier can be specified using the optional argument collection_category, which takes strings'T1’ or 'T2' .

ds = dc.load(product="ls8_sr",
             x=(24.65, 24.75),
             y=(-20.05, -20.15),
             time=("2018-01-01", "2018-03-31"),
             measurements=['blue', 'green', 'red'],
             output_crs='EPSG:6933',
             resolution=(-30,30),
             collection_category="T2"
             )

An example of loading only Tier 2 data using datacube.Datacube.load with the argument collection_category="T2".