NCEP-DOE Reanalysis 2 (Gaussian Grid), Total Cloud Coverage

NOAA/NCEP_DOE_RE2/total_cloud_coverage
数据集可用性
1979-01-01T00:00:00Z–2025-07-31T18:00:00Z
数据集提供商
Earth Engine 代码段
ee.ImageCollection("NOAA/NCEP_DOE_RE2/total_cloud_coverage")
频率
6 小时
标签
atmosphere climate cloud geophysical ncep noaa reanalysis

说明

NCEP-DOE Reanalysis 2 项目使用最先进的分析/预测系统,利用 1979 年至前一年的历史数据执行数据同化。

频段

像素大小
278300 米

频段

名称 单位 最小值 最大值 像素尺寸 说明
tcdc % 0* 100*

总云量

* 估算的最小值或最大值

使用条款

使用条款

这些数据集的使用没有任何限制。

引用

使用 Earth Engine 探索

代码编辑器 (JavaScript)

// Import the dataset, filter the first five months of 2020.
var dataset = ee.ImageCollection('NOAA/NCEP_DOE_RE2/total_cloud_coverage')
                  .filter(ee.Filter.date('2020-01-01', '2020-06-01'));

// Select the total cloud cover band.
var totalCloudCoverage = dataset.select('tcdc');

// Reduce the image collection to per-pixel mean.
var totalCloudCoverageMean = totalCloudCoverage.mean();

// Define visualization parameters.
var vis = {
  min: 0,
  max: 80,  // dataset max is 100
  palette: ['black', 'white'],
};

// Display the dataset.
Map.setCenter(0, 20, 2);
Map.addLayer(totalCloudCoverageMean, vis, 'Total Cloud Coverage Data', false);

// Display a visualization image with opacity defined by cloud cover.
var visImg = totalCloudCoverageMean.visualize(vis)
  .updateMask(totalCloudCoverageMean.divide(100));
Map.addLayer(visImg, null, 'Total Cloud Coverage Vis.', true);
在代码编辑器中打开