Google Earth Engine ——MOD08_M3/MYD08_M3 V6.1是一个大气全球产品,包含大气参数的每月1×1度网格平均值

简介: Google Earth Engine ——MOD08_M3/MYD08_M3 V6.1是一个大气全球产品,包含大气参数的每月1×1度网格平均值

MOD08_M3 V6.1 is an atmosphere global product that contains monthly 1 x 1 degree grid average values of atmospheric parameters. These parameters are related to atmospheric aerosol particle properties, total ozone burden, atmospheric water vapor, cloud optical and physical properties, and atmospheric stability indices. The product also provides means, standard deviations, QA weighted statistics, log-normal distributions, uncertainty estimates, and statistics for fractions of pixels that satisfy some condition. Below is a subset of the bands, for a complete list see the MOD08 Band List.

 

MOD08_M3 V6.1是一个大气全球产品,包含大气参数的每月1×1度网格平均值。这些参数与大气气溶胶颗粒特性、臭氧总负荷、大气水汽、云的光学和物理特性以及大气稳定性指数有关。该产品还提供平均值、标准偏差、QA加权统计、对数正态分布、不确定性估计,以及满足某些条件的像素比例的统计。下面是一个波段的子集,完整的列表见MOD08波段列表。

Dataset Availability

2000-03-01T00:00:00 - 2021-08-01T00:00:00

Dataset Provider

NASA LAADS DAAC at NASA Goddard Space Flight Center

Collection Snippet

ee.ImageCollection("MODIS/061/MOD08_M3")

Resolution

111320 meters

Bands Table

Name Description Min Max Scale
Aerosol_Optical_Depth_Land_Ocean_Mean_Mean Aerosol optical thickness at 0.55 microns for both ocean (best) and land (corrected): mean of daily mean -100 5000 0.001
Aerosol_Optical_Depth_Land_Ocean_Std_Deviation_Mean Aerosol optical thickness at 0.55 microns for both ocean (best) and land (corrected): mean of daily standard deviation -100 5000 0.001
Aerosol_Optical_Depth_Land_QA_Mean_Mean_470 Corrected aerosol optical depth (land) at 0.47 microns: mean of level-3 QA weighted mean -100 5000 0.001
Aerosol_Optical_Depth_Land_QA_Std_Deviation_Mean_470 Corrected aerosol optical depth (land) at 0.47 microns: mean of level-3 weighted QA standard deviation -100 5000 0.001
Cirrus_Fraction_SWIR_FMean Cirrus area fraction: mean of daily fraction 0 10000 0.0001
Cirrus_Fraction_SWIR_FStd Cirrus area fraction: standard deviation of daily fraction 0 10000 0.0001
Cloud_Optical_Thickness_Liquid_Log_Mean_Mean Liquid water cloud optical thickness: mean of daily log mean 0 4176 0.001
Cloud_Optical_Thickness_Liquid_Log_Std_Deviation_Mean Liquid water cloud optical thickness: mean of daily log standard deviation 0 4176 0.001
Cloud_Optical_Thickness_Liquid_Mean_Uncertainty Liquid water cloud optical thickness: multi-day absolute uncertainty estimate derived from the daily absolute uncertainty estimate 0 2000 0.01
Cloud_Optical_Thickness_Liquid_Log_Mean_Uncertainty Liquid water cloud optical thickness: multi-day absolute log uncertainty estimate derived from the daily absolute log uncertainty estimate 0 4477 0.001


使用说明:

This dataset is in the public domain and is available without restriction on use and distribution. See NASA’s Earth Science Data & Information Policy for additional information.

引用:

Platnick, S., M. King, P. Hubanks, 2015. MODIS Atmosphere L3 Monthly Product. NASA MODIS Adaptive Processing System, Goddard Space Flight Center, doi:10.5067/MODIS/MOD08_M3.061

代码:

var dataset = ee.ImageCollection('MODIS/061/MOD08_M3')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));
var aerosolOpticalDepth =
    dataset.select('Aerosol_Optical_Depth_Land_Ocean_Mean_Mean');
var aerosolOpticalDepthVis = {
  min: 0.0,
  max: 3000.0,
  palette: ['ffffff', '1303ff', '01ff09', 'ff2f00'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(
    aerosolOpticalDepth, aerosolOpticalDepthVis, 'Aerosol Optical Depth');

MYD08_M3 V6.1 is an atmosphere global product that contains monthly 1 x 1 degree grid average values of atmospheric parameters. These parameters are related to atmospheric aerosol particle properties, total ozone burden, atmospheric water vapor, cloud optical and physical properties, and atmospheric stability indices. The product also provides means, standard deviations, QA weighted statistics, log-normal distributions, uncertainty estimates, and statistics for fractions of pixels that satisfy some condition. Below is a subset of the bands, for a complete list see the MOD08 Band List.


MYD08_M3 V6.1是一个大气全球产品,包含每月1×1度网格的大气参数平均值。这些参数与大气气溶胶颗粒特性、臭氧总负荷、大气水汽、云的光学和物理特性以及大气稳定性指数有关。该产品还提供平均值、标准偏差、QA加权统计、对数正态分布、不确定性估计,以及满足某些条件的像素比例的统计。下面是一个波段的子集,完整的列表见MOD08波段列表。

Dataset Availability

2002-07-04T00:00:00 - 2021-08-01T00:00:00

Dataset Provider

NASA LAADS DAAC at NASA Goddard Space Flight Center

Collection Snippet

ee.ImageCollection("MODIS/061/MYD08_M3")

代码:

var dataset = ee.ImageCollection('MODIS/006/MYD08_M3')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));
var aerosolOpticalDepth =
    dataset.select('Aerosol_Optical_Depth_Land_Ocean_Mean_Mean');
var aerosolOpticalDepthVis = {
  min: 0.0,
  max: 3000.0,
  palette: ['ffffff', '1303ff', '01ff09', 'ff2f00'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(
    aerosolOpticalDepth, aerosolOpticalDepthVis, 'Aerosol Optical Depth');


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