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

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

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

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');

 


相关文章
|
6月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
2505 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
6月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
224 0
|
5月前
|
机器学习/深度学习 人工智能 数据处理
人工智能平台PAI产品使用合集之PAI-DSW实例服务器ping不通google.com,该如何排查
阿里云人工智能平台PAI是一个功能强大、易于使用的AI开发平台,旨在降低AI开发门槛,加速创新,助力企业和开发者高效构建、部署和管理人工智能应用。其中包含了一系列相互协同的产品与服务,共同构成一个完整的人工智能开发与应用生态系统。以下是对PAI产品使用合集的概述,涵盖数据处理、模型开发、训练加速、模型部署及管理等多个环节。
|
6月前
|
分布式计算 Kubernetes 监控
容器服务Kubernetes版产品使用合集之registry.aliyuncs.com/google_containers 镜像仓库的地址是什么
容器服务Kubernetes版,作为阿里云提供的核心服务之一,旨在帮助企业及开发者高效管理和运行Kubernetes集群,实现应用的容器化与微服务化。以下是关于使用这些服务的一些建议和合集,涵盖基本操作、最佳实践、以及一些高级功能的使用方法。
620 0
|
6月前
|
数据可视化 数据挖掘 数据建模
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
R语言指数平滑法holt-winters分析谷歌Google Analytics博客用户访问时间序列数据
|
6月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
88 0
|
6月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
148 0
|
6月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
77 0
|
6月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
266 0
|
6月前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
130 0

热门文章

最新文章

下一篇
无影云桌面