其他分享
首页 > 其他分享> > Google Earth Engine ——数据全解析专辑(全球550纳米表面的总气溶胶0.4 度数据集)

Google Earth Engine ——数据全解析专辑(全球550纳米表面的总气溶胶0.4 度数据集)

作者:互联网

The Copernicus Atmosphere Monitoring Service provides the capacity to continuously monitor the composition of the Earth’s atmosphere at global and regional scales. The main global near-real-time production system is a data assimilation and forecasting suite providing two 5-day forecasts per day for aerosols and chemical compounds that are part of the chemical scheme.

Currently only two parameters are available,

  1. Total Aerosol Optical Depth at 550nm surface
  2. Particulate matter d < 25 um surface Note that system:time_start refers to forecast time.

哥白尼大气监测服务提供了在全球和区域范围内连续监测地球大气成分的能力。主要的全球近实时生产系统是一个数据同化和预测套件,每天提供两个为期5天的气溶胶和属于化学计划的化合物的预测。

目前只有两个参数可用。

550纳米表面的总气溶胶光学深度颗粒物d<25um表面 注意,system:time_start指的是预报时间。

Dataset Availability

2016-06-21T00:00:00 - 2021-09-05T00:00:00

Dataset Provider

European Centre for Medium-Range Weather Forecasts (ECMWF)

Collection Snippet

ee.ImageCollection("ECMWF/CAMS/NRT")

Resolution

0.4 degrees

Bands Table

NameDescriptionMin*Max*Units
total_aerosol_optical_depth_at_550nm_surfaceTotal Aerosol Optical Depth at 550nm0.0000963.582552
particulate_matter_d_less_than_25_um_surfaceParticulate matter d < 2.5 um00.000076kg m**-3

* = Values are estimated

影像属性:

NameTypeDescription
model_initialization_hourIntProduct creation hour
model_initialization_datetimeStringProduct creation time and date
model_forecast_hourIntProduct forecast hour
var dataset = ee.ImageCollection('ECMWF/CAMS/NRT')
                  .filter(ee.Filter.date('2019-01-01', '2019-01-31'));
var aod = dataset.select('total_aerosol_optical_depth_at_550nm_surface');
var visParams = {
  min: 0.000096,
  max: 3.582552,
  palette: [
    "5E4FA2",
    "3288BD",
    "66C2A5",
    "ABE0A4",
    "E6F598",
    "FFFFBF",
    "FEE08B",
    "FDAE61",
    "F46D43",
    "D53E4F",
    "9E0142"
  ]
};
Map.setCenter(-94.18, 16.8, 1);
Map.addLayer(aod, visParams, 'Total Aerosal Optical Depth');

说明:

对于商业或非商业目的的使用或复制和再分配,无论是否经过调整,都没有限制。本数据政策适用于哥白尼计划内产生的数据和信息,即哨兵任务数据和哥白尼服务信息。

参见完整的COPERNICUS数据许可证。

带有归属要求的许可证条款显示如下。

5.1.1. 当被许可人向公众传播或分发哥白尼产品时,被许可人应通过使用以下或任何类似的通知来告知接受者其来源。

使用哥白尼气候变化服务信息[年份]生成'和/或
使用哥白尼大气监测服务信息生成的[年份]"。
5.1.2. 如果被许可人制作或提供含有改编或修改的哥白尼产品的出版物或发行,被许可人应提供以下或任何类似的通知。

含有经修改的哥白尼气候变化服务信息[年份]";和/或
含有经修改的哥白尼大气监测服务信息[年份]
5.1.3. 第5.1.1和5.1.2条所涉及的任何此类出版物或分发应说明,欧盟委员会或ECMWF对其所包含的哥白尼信息或数据的任何使用都不负责。

数据引用:

Benedetti, A., and Coauthors, 2009: Aerosol analysis and forecast in the ECMWF Integrated Forecast System. Part II : Data assimilation, J. Geophys. Res., 114, D13205 doi:10.1029/2008JD011115.

Morcrette, and Coauthors, 2009: Aerosol analysis and forecast in the ECMWF Integrated Forecast System. Part I: Forward modelling, J. Geophys. Res., 114, D06206. doi:10.1029/2008JD011235

标签:Engine,5.1,00,Google,ECMWF,哥白尼,550,forecast,Aerosol
来源: https://blog.csdn.net/qq_31988139/article/details/120189174