
- 数据集可用时间
- 1979-01-01T00:00:00Z–2025-08-31T18:00:00Z
- 数据集提供方
- NOAA
- 频率
- 6 小时
- 标签
说明
NCEP-DOE Reanalysis 2 项目使用最先进的分析/预测系统,利用 1979 年到前一年的历史数据执行数据同化。
频段
像元大小
278,300 米
波段
名称 | 单位 | 最小值 | 最大值 | 像素尺寸 | 说明 |
---|---|---|---|---|---|
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);