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

NOAA/NCEP_DOE_RE2/total_cloud_coverage
זמינות קבוצת הנתונים
1979-01-01T00:00:00Z–2026-01-31T18:00:00Z
מפיק מערך הנתונים
קטע קוד ל-Earth Engine
ee.ImageCollection("NOAA/NCEP_DOE_RE2/total_cloud_coverage")
קצב
6 שעות
תגים
atmosphere climate cloud geophysical ncep noaa reanalysis <x0A>
<x0A>

תיאור

בפרויקט 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);
פתיחה ב-Code Editor