apac-nwp-forecast-raw
收藏资源简介:
APAC NWP Forecast原始数据集是一个按模型运行捕获的、不可变的亚太地区数值天气预报(NWP)原始数据集合,采用Parquet格式存储。该数据集属于青铜层原始导出层,保持数据获取时的原始状态,未重构成便于分析的数据立方体。它包含日本气象厅(JMA)的MSM模型和德国气象局(DWD)的ICON模型提供的预报数据,数据组织采用Hive风格分区,路径结构为`data/model=<model>/year=YYYY/month=MM/<run>.parquet`,文件名代表模型运行的初始化时间(UTC)。数据结构为长表格,每一行对应一个特定的地理位置ID和时间点,包含经纬度、海拔坐标、数据来源信息(如运行初始化和抓取时间)以及多种天气变量,例如辐照度、温度、湿度、风、气压、降水、云量等(仅DWD ICON模型包含雪相关变量)。数据点构成完整的规则经纬度网格。数据集基于Open-Meteo.com提供的JMA和DWD开放数据,采用CC BY 4.0许可证。注意:大多数用户更适合使用经过处理、分析就绪的白银层数据集(jimtseng/apac-nwp-forecast),该原始数据集主要用于数据流水线的初始捕获和存档。
The APAC NWP Forecast Raw Dataset is an immutable collection of raw Asia-Pacific numerical weather prediction (NWP) data captured per model run, stored in Parquet format. This dataset belongs to the 'Bronze' tier of the data family, i.e., the raw export layer, where the data remains in its original state at the time of acquisition and has not been restructured into analysis-ready data cubes. The dataset includes forecast data from the Japan Meteorological Agency (JMA) MSM model and the German Weather Service (DWD) ICON model. The data is organized using Hive-style partitioning, with the path structure `data/model=<model>/year=YYYY/month=MM/<run>.parquet`, where the filename represents the initialization time (UTC) of the model run. The data structure is a long-format table, where each row corresponds to a specific geographic location ID and time point, containing latitude and longitude, elevation coordinates, data source information (run initialization and ingestion time), and various weather variables such as irradiance, temperature, humidity, wind, atmospheric pressure, precipitation, cloud cover, etc. (only the DWD ICON model includes snow-related variables). The data points form a complete regular latitude-longitude grid. The dataset is based on open data from JMA and DWD provided by Open-Meteo.com, and is licensed under CC BY 4.0. It is worth noting that most users are better suited to use the processed, analysis-ready 'Silver' tier dataset (jimtseng/apac-nwp-forecast), as this raw dataset is primarily intended for initial capture and archiving of data pipelines.
数据集概述
APAC NWP Forecast — raw per-run parquet (Bronze) 是一个不可变的、按模型运行(per-run)存储的 Parquet 格式数据集,捕获了亚太地区数值天气预报(NWP)的原始数据,包含 JMA MSM 和 DWD ICON 两种模型。该数据集属于同一系列数据集中的 Bronze(青铜) 层,即原始导出层,数据保持提取时的原样,未进行重塑处理。对于需要可直接分析的数据,建议使用同系列的 Silver(白银)层数据集: jimtseng/apac-nwp-forecast(Zarr 格式)。
数据集家族
| 数据集 | 格式 | 角色 |
|---|---|---|
| jimtseng/apac-nwp-forecast | Zarr cube (Mode A) | 分析就绪的 Silver 层(推荐使用) |
| jimtseng/apac-nwp-forecast-raw (本数据集) | 按运行存储的 Parquet 文件 | Bronze 层 — 不可变的运行级捕获 |
| jimtseng/apac-nwp-forecast-zip | 按运行存储的 .zarr.zip |
历史冷归档(Bronze 层之前的原始数据) |
时间覆盖说明: Bronze 层仅从前向管道开始运行后累积数据。历史运行的数据在旧管道中被丢弃(转换后即删除 Parquet),因此历史原始数据保存在 apac-nwp-forecast-zip 中。Silver 层则同时覆盖历史与新增数据。
数据布局
数据采用 Hive 风格分区,层级结构如下:
data/model=<model>/year=YYYY/month=MM/<run>.parquet
示例: data/model=dwd_icon/year=2026/month=07/20260701T00Z.parquet
- model:模型名称(如
jma_msm、dwd_icon) - year / month:根据运行初始时间划分的年和月
- 文件名:模型运行初始化时间(UTC),如
20260701T00Z表示 2026-07-01 的 00z 运行
数据模式
数据为长表格式,每一行对应一个 (location_id, time) 组合,包含以下列:
- 位置信息:
latitude、longitude、elevation - 来源信息:
run_init(运行初始化时间)、scraped_at(抓取时间) - 气象变量:辐照度、温度、湿度、风、气压、降水量、云覆盖率,以及仅
dwd_icon模型包含的雪数据。
数据采用整数量化存储(辐射为 uint16,云覆盖率/湿度为 uint8),以 zstd 压缩。数据点覆盖完整的规则经纬网格。
加载示例
python import pandas as pd from huggingface_hub import hf_hub_download p = hf_hub_download("jimtseng/apac-nwp-forecast-raw", "data/model=dwd_icon/year=2026/month=07/20260701T00Z.parquet", repo_type="dataset") df = pd.read_parquet(p)
许可与归属
- 许可协议:CC BY 4.0
- 数据来源:由 Open-Meteo.com 提供的天气数据,基于 JMA(MSM)和 DWD(ICON)的开放数据。
- 要求:在重新分发或展示数据时,请保留上述归属信息。



