首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Google Earth Engine——NOAA气候数据记录(CDR)的气溶胶光学厚度(AOT)是全球每日0.1度的衍生数据的集合,气溶胶产品是由AVHRR图像在白天海洋上空无云条件下生成的。

Google Earth Engine——NOAA气候数据记录(CDR)的气溶胶光学厚度(AOT)是全球每日0.1度的衍生数据的集合,气溶胶产品是由AVHRR图像在白天海洋上空无云条件下生成的。

作者头像
此星光明
发布2024-02-02 09:54:09
发布2024-02-02 09:54:09
27000
代码可运行
举报
运行总次数:0
代码可运行

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.

NOAA气候数据记录(CDR)的气溶胶光学厚度(AOT)是全球每日0.1度的衍生数据的集合,来自PATMOS-x AVHRR level-2b频道1(0.63微米)轨道晴空辐射度。气溶胶产品是由AVHRR图像在白天海洋上空无云条件下生成的。

由于与水面闪光区和陆地表面的表面反射率相关的相对较大的不确定性,以及有限的AVHRR检索通道,这个数据集只包括对非闪光水面的检索(特别是在轨道的反太阳侧,观察角度超过40度,远离镜面射线)。更多的细节,见算法说明。

图像和数据处理由NOAA的国家气候数据中心进行。

Dataset Availability

1981-01-01T00:00:00 - 2021-06-30T00:00:00

Dataset Provider

NOAA

Collection Snippet

ee.ImageCollection("NOAA/CDR/AVHRR/AOT/V3")

Resolution

11132 meters

Bands Table

Name

Description

Min*

Max*

aot

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.

-0.19

4.95

* = Values are estimated

数据引用:

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].

数据说明:

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.代码:

代码语言:javascript
代码运行次数:0
运行
复制
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');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档