- 資料集開放期間
- 1979-01-01T00:00:00Z–2025-12-31T18:00:00Z
- 資料集產生者
- NOAA Google Earth Engine
- 行銷系列活動
- 6 小時
- 標記
說明
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);