NOAA CDR AVHRR AOT: Daily Aerosol Optical Thickness Over Global Oceans, v03 [deprecated]

NOAA/CDR/AVHRR/AOT/V3
Dataset Availability
1981-01-01T00:00:00Z–2022-03-31T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("NOAA/CDR/AVHRR/AOT/V3")
Tags
aerosol atmospheric avhrr cdr daily noaa optical pollution
aot

Description

The NOAA Climate Data Record (CDR) of Aerosol Optical Thickness (AOT) is a collection of global daily 0.1 degree derived data from the PATMOS-x AVHRR level-2b channel 1 (0.63 micron) orbital clear-sky radiance. The aerosol product is generated from AVHRR imagery in cloud-free conditions during daytime over oceans.

Due to the relatively large uncertainties associated with surface reflectance over water glint area and land surface as well as limited AVHRR retrieval channels, this dataset only includes retrieval over non-glint water surface (specifically at the anti-solar side of the orbit with viewing angle more than 40 degree away from the specular ray). For more details, see the Algorithm Description.

Image and data processing by NOAA's National Climatic Data Center.

Bands

Resolution
11132 meters

Bands

Name Min Max Description
aot -0.19* 4.95*

Atmosphere optical thickness; the degree to which aerosols prevent the transmission of light by absorption or scattering of light. A value of 0.01 corresponds to an extremely clean atmosphere, and a value of 0.4 would correspond to a very hazy condition. An average aerosol optical depth for the U.S. is 0.1 to 0.15.

* estimated min or max value

Terms of Use

Terms of Use

The NOAA CDR Program's official distribution point for CDRs is NOAA's National Climatic Data Center which provides sustained, open access and active data management of the CDR packages and related information in keeping with the United States' open data policies and practices as described in the President's Memorandum on "Open Data Policy" and pursuant to the Executive Order of May 9, 2013, "Making Open and Machine Readable the New Default for Government Information". In line with these policies, the CDR data sets are nonproprietary, publicly available, and no restrictions are placed upon their use. For more information, see the Fair Use of NOAA's CDR Data Sets, Algorithms and Documentation pdf.

Citations

Citations:
  • Zhao, Xuepeng; and NOAA CDR Program (2017): NOAA Climate Data Record (CDR) of AVHRR Daily and Monthly Aerosol Optical Thickness (AOT) over Global Oceans, Version 3.0. [indicate subset used]. NOAA National Centers for Environmental Information. doi:10.7289/V5BZ642P [date accessed].

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('NOAA/CDR/AVHRR/AOT/V3')
                  .filter(ee.Filter.date('2018-02-01', '2018-03-01'));
var aerosolOpticalThickness = dataset.select('aot');
var visParams = {
  min: 0.0,
  max: 0.5,
  palette: ['800080', '0000ff', '00ffff', '008000', 'ffff00', 'ff0000'],
};
Map.setCenter(-88.6, 26.4, 3);
Map.addLayer(
    aerosolOpticalThickness, visParams,
    'Aerosol Optical Thickness');
Open in Code Editor