前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——NCEP/NCAR再分析项目是美国国家环境预测中心(NCEP,前身为 “NMC“)和美国国家大气研究中心(NCAR)全球气温数据集

Google Earth Engine——NCEP/NCAR再分析项目是美国国家环境预测中心(NCEP,前身为 “NMC“)和美国国家大气研究中心(NCAR)全球气温数据集

作者头像
此星光明
发布2024-02-02 09:52:59
1930
发布2024-02-02 09:52:59
举报

The NCEP/NCAR Reanalysis Project is a joint project between the National Centers for Environmental Prediction (NCEP, formerly "NMC") and the National Center for Atmospheric Research (NCAR). The goal of this joint effort is to produce new atmospheric analyses using historical data as well as to produce analyses of the current atmospheric state (Climate Data Assimilation System, CDAS). The NCEP/NCAR Reanalysis 1 project is using a state-of-the-art analysis/forecast system to perform data assimilation using past data from 1948 to the present. The data have 6-hour temporal resolution (0000, 0600, 1200, and 1800 UTC) and 2.5 degree spatial resolution.

NCEP/NCAR再分析项目是美国国家环境预测中心(NCEP,前身为 "NMC")和美国国家大气研究中心(NCAR)的一个联合项目。这项联合工作的目标是利用历史数据产生新的大气分析,以及产生对当前大气状态的分析(气候数据同化系统,CDAS)。NCEP/NCAR Reanalysis 1项目正在使用最先进的分析/预报系统,利用1948年至今的过去数据进行数据同化。这些数据具有6小时的时间分辨率(0000、0600、1200和1800 UTC)和2.5度的空间分辨率。

Dataset Availability

1948-01-01T00:00:00 - 2021-09-27T00:00:00

Dataset Provider

NCEP

Collection Snippet

ee.ImageCollection("NCEP_RE/surface_temp")

Resolution

278300 meters

Bands Table

Name

Description

Min*

Max*

Units

air

Surface air temperature

187.3

323.5

K

* = Values are estimated

数据引用:

Kalnay et al., 1996, The NCEP/NCAR 40-Year Reanalysis Project. Bull. Amer. Meteor. Soc., 77, 437-471. doi:10.1175/1520-0477(1996)077<0437:TNYRP>2.0.CO;2.

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('NCEP_RE/surface_temp')
                  .filter(ee.Filter.date('2018-08-01', '2018-08-15'));
var surfaceAirTemperature = dataset.select('air');
var surfaceAirTemperatureVis = {
  min: 230.0,
  max: 308.0,
  palette: [
    '800080', '0000ab', '0000ff', '008000', '19ff2b', 'a8f7ff', 'ffff00',
    'd6d600', 'ffa500', 'ff6b01', 'ff0000'
  ],
};
Map.setCenter(71.72, 52.48, 3.0);
Map.addLayer(
    surfaceAirTemperature, surfaceAirTemperatureVis, 'Surface Air Temperature');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档