当前位置 : 主页 > 网络编程 > net编程 >

Google Earth Engine —— NOAA每天0.25度的海面温度插值(OISST)全球海洋温度场数据集

来源:互联网 收集:自由互联 发布时间:2023-10-08
The NOAA 1/4 degree daily Optimum Interpolation Sea Surface Temperature (OISST) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellite, ships, buoys) on a regular g


The NOAA 1/4 degree daily Optimum Interpolation Sea Surface Temperature (OISST) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellite, ships, buoys) on a regular global grid, with gaps filled in by interpolation. Satellite data from the Advanced Very High Resolution Radiometer (AVHRR) provides the main input which permits the high temporal-spatial coverage beginning in late 1981 to the present.

The OISST dataset has a single day's data processed twice. First a near real-time preliminary version is released with a lag of 1 day, and a final version with a lag of 14 days. The final version uses extra days for smoothing, and zonal bias correction in addition to replacing the preliminary version.

NOAA每天1/4度的最佳内插海面温度(OISST)提供了完整的海洋温度场,它是通过将不同平台(卫星、船舶、浮标)的偏差调整后的观测数据在全球常规网格上进行组合,并通过内插法填补空白。来自高级甚高分辨率辐射计(AVHRR)的卫星数据提供了主要的输入,使得从1981年末至今的时间-空间覆盖率很高。

OISST数据集对一天的数据进行两次处理。首先发布的是滞后1天的近实时初步版本,以及滞后14天的最终版本。最终版本除了取代初步版本外,还使用额外的天数进行平滑处理和区域偏差校正。

Dataset Availability

1981-09-01T00:00:00 - 2021-09-25T00:00:00

Dataset Provider

​​NOAA​​

Collection Snippet

​ee.ImageCollection("NOAA/CDR/OISST/V2_1")​

Resolution

27830 meters

Bands Table

Name

Description

Min*

Max*

Units

Scale

sst

Daily sea surface temperature

-180

3764

°C

0.01

anom

Temperature anomaly; the daily OISST minus a 30-year climatological mean.

-1887

1902

°C

0.01

ice

Seven-day median of daily sea ice concentrations.

1

100

%

0.01

err

Estimated error; standard deviation of analyzed sea surface temperature.

11

171

°C

0.01

* = Values are estimated

影像属性:

Name

Type

Description

status

String

'provisional' or 'permanent'

数据说明:

The NOAA CDR Program’s official distribution point for CDRs is NOAA’s National Climatic Data Center which provides sustained, open access and active data management of the CDR packages and related information in keeping with the United States’ open data policies and practices as described in the President's Memorandum on "Open Data Policy" and pursuant to the Executive Order of May 9, 2013, "Making Open and Machine Readable the New Default for Government Information". In line with these policies, the CDR data sets are nonproprietary, publicly available, and no restrictions are placed upon their use. For more information, see the ​​Fair Use of NOAA's CDR Data Sets, Algorithms and Documentation​​ pdf.

数据引用:

Richard W. Reynolds, Viva F. Banzon, and NOAA CDR Program (2008): NOAA Optimum Interpolation 1/4 Degree Daily Sea Surface Temperature (OISST) Analysis, Version 2. [indicate subset used]. NOAA National Centers for Environmental Information. ​​doi:10.7289/V5SQ8XB5​​ [access date].

代码:

var dataset = ee.ImageCollection('NOAA/CDR/OISST/V2')
.filter(ee.Filter.date('2017-05-01', '2017-05-14'));
var seaSurfaceTemperature = dataset.select('sst');
var visParams = {
min: -180.0,
max: 3000.0,
palette: [
'040274', '040281', '0502a3', '0502b8', '0502ce', '0502e6',
'0602ff', '235cb1', '307ef3', '269db1', '30c8e2', '32d3ef',
'3be285', '3ff38f', '86e26f', '3ae237', 'b5e22e', 'd6e21f',
'fff705', 'ffd611', 'ffb613', 'ff8b13', 'ff6e08', 'ff500d',
'ff0000', 'de0101', 'c21301', 'a71001', '911003'
],
};
Map.setCenter(20.3, -20.39, 2);
Map.addLayer(seaSurfaceTemperature, visParams, 'Sea Surface Temperature');


网友评论