TIGGE
收藏资源简介:
该项目提供从ECMWF服务器下载TIGGE数据的脚本。具体来说,该脚本设计用于检索ECMWF模型的数据,尽管这可以适应其他模型而不会太麻烦。它允许用户下载特定时间段和变量的预测数据。
This project provides scripts for downloading TIGGE data from the ECMWF server. Specifically, these scripts are designed to retrieve data from the ECMWF model, though they can be adapted for other models with minimal effort. They enable users to download forecast data for specified time periods and variables.
TIGGE 数据集概述
数据集参数
预测类型
- 控制预测 (cf): 1 个集合成员
- 扰动预测 (pf): 50 个集合成员
初始化时间
- 00:00:00 UTC
- 12:00:00 UTC
预测长度
- 总预测长度: 360 小时 (15 天)
- 时间步长: 6 小时
空间分辨率
- 网格: 0.5° x 0.5° (全球)
可用变量
- 2 米温度 (t2m)
- 总降水 (tp)
- 500 hPa 位势高度 (gh)
数据范围
- 数据从 2006 年 10 月至今
数据格式
- 输出格式: GRIB
使用方法
脚本运行
-
命令行运行脚本:
python TIGGE_data_retrieval.py <time_periods>... <variables>... [--start_day START_DAY]
-
参数:
<time_periods>: 一个或多个时间周期,格式为 YYYY 或 YYYY-MM<variables>: 一个或多个变量,选项包括:t2m: 2 米温度tp: 总降水gh: 500 hPa 位势高度
--start_day START_DAY: (可选) 开始下载的月份中的某一天 (默认是 1)
示例请求
python TIGGE_data_retrieval.py 2007 2008 t2m tp gh python TIGGE_data_retrieval.py 2007-01 gh --start_day 5
存储
数据存储路径
-
数据下载到 NCI 的路径格式:
/g/data/xv83/TIGGE/data/{model}/{variable}/{type}/{year}/{month}/{time}/{variable}6hr{model}{type}{grid}_{YYYYMMDD}.grib
-
示例:
/g/data/xv83/TIGGE/data/ECMWF/t2m/pf/2011/06/0000/t2m_6hr_ECMWF_pf_GLO-05_20110625.grib




