mirror-earth-mcp 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mirror_earth_mcp-0.2.0/PKG-INFO +97 -0
- mirror_earth_mcp-0.2.0/README.md +75 -0
- mirror_earth_mcp-0.2.0/pyproject.toml +44 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/__init__.py +3 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/__main__.py +5 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-api.md +167 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_aifs.md +60 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_cma.md +119 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_gem.md +109 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_gfs.md +134 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_graphcast.md +54 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_hres.md +99 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_icon.md +123 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_ifs.md +119 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_jma.md +93 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_kma.md +81 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_mfa.md +142 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_ukmo.md +86 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/batch-exports.md +368 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/daily-variables.md +102 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-api.md +170 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/aifs.md +58 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/bom.md +99 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/cma.md +116 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/ecmwf.md +115 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/gem.md +106 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/gfs.md +129 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/graphcast.md +50 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/icon.md +121 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/jma.md +89 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/kma.md +80 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/meteofrance.md +137 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/forecast-models/ukmo.md +84 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/historical-api.md +131 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/historical-models/era5.md +218 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/historical-models/era5_pressure.md +48 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/monthly-variables.md +105 -0
- mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/server.py +259 -0
- mirror_earth_mcp-0.2.0/tests/test_server.py +28 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirror-earth-mcp
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Model Context Protocol server for Mirror Earth weather data.
|
|
5
|
+
Project-URL: Homepage, https://gitee.com/gfyml/mirror-earth-mcp
|
|
6
|
+
Project-URL: Repository, https://gitee.com/gfyml/mirror-earth-mcp.git
|
|
7
|
+
Author: Mirror Earth
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: mcp,mirror-earth,weather
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Internet
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# Mirror Earth MCP
|
|
24
|
+
|
|
25
|
+
`mirror-earth-mcp` is a Python implementation of a Model Context Protocol (MCP) server for Mirror Earth weather data. It provides weather queries, model and variable catalogs, geocoding, local Markdown references, and batch-export task management.
|
|
26
|
+
|
|
27
|
+
## Requirements
|
|
28
|
+
|
|
29
|
+
- Python 3.9 or newer
|
|
30
|
+
- [uv](https://docs.astral.sh/uv/)
|
|
31
|
+
- A Mirror Earth API key for authenticated weather and batch-export tools
|
|
32
|
+
|
|
33
|
+
`geocode` and `reverse_geocode` use the public geocoding endpoint and do not require an API key.
|
|
34
|
+
|
|
35
|
+
## Install and Run
|
|
36
|
+
|
|
37
|
+
Run the published package directly with `uvx`:
|
|
38
|
+
|
|
39
|
+
```powershell
|
|
40
|
+
uvx --from mirror-earth-mcp mirror-earth-mcp
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Set `MIRROR_EARTH_API_KEY` in the MCP client's environment. The server uses stdio transport and writes JSON-RPC responses only to standard output.
|
|
44
|
+
|
|
45
|
+
## MCP Configuration
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"mcpServers": {
|
|
50
|
+
"mirror-earth": {
|
|
51
|
+
"command": "uvx",
|
|
52
|
+
"args": ["--from", "mirror-earth-mcp", "mirror-earth-mcp"],
|
|
53
|
+
"env": {
|
|
54
|
+
"MIRROR_EARTH_API_KEY": "YOUR_MIRROR_EARTH_API_KEY"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
For Codex CLI:
|
|
62
|
+
|
|
63
|
+
```powershell
|
|
64
|
+
codex mcp add mirror-earth --env MIRROR_EARTH_API_KEY=YOUR_MIRROR_EARTH_API_KEY -- uvx --from mirror-earth-mcp mirror-earth-mcp
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Tools
|
|
68
|
+
|
|
69
|
+
| Tool | Purpose |
|
|
70
|
+
| --- | --- |
|
|
71
|
+
| `list_models` | List forecast, historical, and archive forecast models. |
|
|
72
|
+
| `get_model_details` | Inspect model metadata, variables, and pressure levels. |
|
|
73
|
+
| `list_variables` | List hourly, daily, or monthly variables. |
|
|
74
|
+
| `get_forecast` | Query weather forecasts by coordinates. |
|
|
75
|
+
| `get_historical_weather` | Query ERA5 historical weather data. |
|
|
76
|
+
| `get_archive_forecast` | Query a past model forecast run. |
|
|
77
|
+
| `get_seamless_weather` | Query continuous ERA5 and ECMWF data. |
|
|
78
|
+
| `geocode` / `reverse_geocode` | Resolve place names and coordinates. |
|
|
79
|
+
| `get_batch_usage` | Inspect batch-export quota and usage. |
|
|
80
|
+
| `estimate_batch_export` / `create_batch_export` | Estimate and create batch exports. |
|
|
81
|
+
| `get_batch_task` / `list_batch_tasks` / `cancel_batch_task` | Manage batch-export tasks. |
|
|
82
|
+
|
|
83
|
+
The server also exposes bundled API and model documentation as `mirror-earth://references/...` MCP resources.
|
|
84
|
+
|
|
85
|
+
## Development
|
|
86
|
+
|
|
87
|
+
```powershell
|
|
88
|
+
uv sync
|
|
89
|
+
uv run pytest
|
|
90
|
+
uv build
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Build artifacts are written to `dist/`. To publish a new version, authenticate with a PyPI token using the `UV_PUBLISH_TOKEN` environment variable and run:
|
|
94
|
+
|
|
95
|
+
```powershell
|
|
96
|
+
uv publish
|
|
97
|
+
```
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Mirror Earth MCP
|
|
2
|
+
|
|
3
|
+
`mirror-earth-mcp` is a Python implementation of a Model Context Protocol (MCP) server for Mirror Earth weather data. It provides weather queries, model and variable catalogs, geocoding, local Markdown references, and batch-export task management.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Python 3.9 or newer
|
|
8
|
+
- [uv](https://docs.astral.sh/uv/)
|
|
9
|
+
- A Mirror Earth API key for authenticated weather and batch-export tools
|
|
10
|
+
|
|
11
|
+
`geocode` and `reverse_geocode` use the public geocoding endpoint and do not require an API key.
|
|
12
|
+
|
|
13
|
+
## Install and Run
|
|
14
|
+
|
|
15
|
+
Run the published package directly with `uvx`:
|
|
16
|
+
|
|
17
|
+
```powershell
|
|
18
|
+
uvx --from mirror-earth-mcp mirror-earth-mcp
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Set `MIRROR_EARTH_API_KEY` in the MCP client's environment. The server uses stdio transport and writes JSON-RPC responses only to standard output.
|
|
22
|
+
|
|
23
|
+
## MCP Configuration
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"mirror-earth": {
|
|
29
|
+
"command": "uvx",
|
|
30
|
+
"args": ["--from", "mirror-earth-mcp", "mirror-earth-mcp"],
|
|
31
|
+
"env": {
|
|
32
|
+
"MIRROR_EARTH_API_KEY": "YOUR_MIRROR_EARTH_API_KEY"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
For Codex CLI:
|
|
40
|
+
|
|
41
|
+
```powershell
|
|
42
|
+
codex mcp add mirror-earth --env MIRROR_EARTH_API_KEY=YOUR_MIRROR_EARTH_API_KEY -- uvx --from mirror-earth-mcp mirror-earth-mcp
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Tools
|
|
46
|
+
|
|
47
|
+
| Tool | Purpose |
|
|
48
|
+
| --- | --- |
|
|
49
|
+
| `list_models` | List forecast, historical, and archive forecast models. |
|
|
50
|
+
| `get_model_details` | Inspect model metadata, variables, and pressure levels. |
|
|
51
|
+
| `list_variables` | List hourly, daily, or monthly variables. |
|
|
52
|
+
| `get_forecast` | Query weather forecasts by coordinates. |
|
|
53
|
+
| `get_historical_weather` | Query ERA5 historical weather data. |
|
|
54
|
+
| `get_archive_forecast` | Query a past model forecast run. |
|
|
55
|
+
| `get_seamless_weather` | Query continuous ERA5 and ECMWF data. |
|
|
56
|
+
| `geocode` / `reverse_geocode` | Resolve place names and coordinates. |
|
|
57
|
+
| `get_batch_usage` | Inspect batch-export quota and usage. |
|
|
58
|
+
| `estimate_batch_export` / `create_batch_export` | Estimate and create batch exports. |
|
|
59
|
+
| `get_batch_task` / `list_batch_tasks` / `cancel_batch_task` | Manage batch-export tasks. |
|
|
60
|
+
|
|
61
|
+
The server also exposes bundled API and model documentation as `mirror-earth://references/...` MCP resources.
|
|
62
|
+
|
|
63
|
+
## Development
|
|
64
|
+
|
|
65
|
+
```powershell
|
|
66
|
+
uv sync
|
|
67
|
+
uv run pytest
|
|
68
|
+
uv build
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Build artifacts are written to `dist/`. To publish a new version, authenticate with a PyPI token using the `UV_PUBLISH_TOKEN` environment variable and run:
|
|
72
|
+
|
|
73
|
+
```powershell
|
|
74
|
+
uv publish
|
|
75
|
+
```
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mirror-earth-mcp"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Model Context Protocol server for Mirror Earth weather data."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Mirror Earth" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.9",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Topic :: Internet",
|
|
24
|
+
]
|
|
25
|
+
keywords = ["mcp", "weather", "mirror-earth"]
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
mirror-earth-mcp = "mirror_earth_mcp.server:main"
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "https://gitee.com/gfyml/mirror-earth-mcp"
|
|
32
|
+
Repository = "https://gitee.com/gfyml/mirror-earth-mcp.git"
|
|
33
|
+
|
|
34
|
+
[tool.hatch.build.targets.wheel]
|
|
35
|
+
packages = ["src/mirror_earth_mcp"]
|
|
36
|
+
|
|
37
|
+
[tool.hatch.build.targets.sdist]
|
|
38
|
+
include = ["/src", "/tests", "/README.md", "/pyproject.toml"]
|
|
39
|
+
|
|
40
|
+
[tool.pytest.ini_options]
|
|
41
|
+
testpaths = ["tests"]
|
|
42
|
+
|
|
43
|
+
[dependency-groups]
|
|
44
|
+
dev = ["pytest>=7.4"]
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 历史预报数据API
|
|
3
|
+
description: 历史预报数据,提供过去每一次预报产生的数据。由于数据量巨大,历史预报仅对部分数据源开放,详见数据源总览。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
以获取gfs2025年5月15日0时预报为例,这个请求是获取未来48小时逐小时气温和逐日最高气温
|
|
7
|
+
请求示例:
|
|
8
|
+
|
|
9
|
+
`https://api.mirror-earth.com/v1/archive-forecast?latitude=32&longitude=118&hourly=temperature_2m&daily=temperature_2m_max&models=archive_gfs&start_hour=2025-12-01T00:00&timezone=auto&forecast_hours=48&apikey=`
|
|
10
|
+
|
|
11
|
+
> **Note:**
|
|
12
|
+
起报时间是指预报模型运行的时间,例如2025-05-15T00:00,表示gfs在这个时间点对未来的天气做了一次预报。
|
|
13
|
+
**返回结果:**
|
|
14
|
+
```json
|
|
15
|
+
|
|
16
|
+
{
|
|
17
|
+
...
|
|
18
|
+
"hourly_units":{"time":"iso8601","temperature_2m":"°C"},
|
|
19
|
+
"daily_units":{"time":"iso8601","temperature_2m_max":"°C"},
|
|
20
|
+
"hourly": {
|
|
21
|
+
"time": ["2022-01-01T00:00","2022-01-01T01:00", ...],
|
|
22
|
+
"temperature_2m": [1.85,4.25,5.40,6.05,6.55,7.15,7.55,7.65,7.35, ...]
|
|
23
|
+
},
|
|
24
|
+
"daily": {
|
|
25
|
+
"time": ["2022-01-01", "2022-01-02", ...],
|
|
26
|
+
"temperature_2m_max": [7.2, 6.5, 4.3, ...]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
- hourly_units: 逐小时要素单位
|
|
31
|
+
- daily_units: 逐日要素单位
|
|
32
|
+
- hourly: 逐小时数据列表
|
|
33
|
+
- daily: 逐日数据列表
|
|
34
|
+
|
|
35
|
+
> **Note:**
|
|
36
|
+
不同模型的数据开始时间不同,有些数据源包含起报时刻,有些不包含,为了一致性,接口将其统一从起报时刻开始返回,缺失值用nan表示。
|
|
37
|
+
## 历史预报数据源总览
|
|
38
|
+
|
|
39
|
+
| 模型名称 | 来源 | 空间分辨率 | 更新频率 | 预测时长 | 可用时间范围 |
|
|
40
|
+
| ----------- | ------------------------ | ---------- | -------- | -------- | ---- |
|
|
41
|
+
| archive_ifs | 欧洲中期天气预报中心 | 25km | 世界时00/06/12/18更新 | 0-360小时 | 2023-01-01至今 |
|
|
42
|
+
| archive_hres | 欧洲中期天气预报中心 | 9km | 世界时00/06/12/18更新 | 0-360小时 | 2019-01-01至今 |
|
|
43
|
+
| archive_gfs | 美国国家海洋和大气管理局 | 25km | 世界时00/06/12/18更新 | 0-384小时 | 2023-07-01至今 |
|
|
44
|
+
| archive_aifs | 欧洲中期天气预报中心(AI预报模型) | 25km | 每6小时 | 0-360小时 | 2025-09-19至今 |
|
|
45
|
+
| archive_graphcast | 美国国家海洋和大气管理局(AI预报模型) | 25km | 每6小时 | 0-384小时 | 2025-09-19至今 |
|
|
46
|
+
| archive_cma | 中国气象局 | 12.5km | 每6小时 | 0-108小时 | 2025-09-19至今 |
|
|
47
|
+
| archive_gem | 加拿大气象局 | 15km | 每12小时 | 0-240小时 | 2025-09-19至今 |
|
|
48
|
+
| archive_icon | 德国气象局 | 11km | 每6小时 | 0-168小时 | 2025-09-19至今 |
|
|
49
|
+
| archive_jma | 日本气象厅 | 50km | 每6小时 | 0-264小时 | 2025-09-19至今 |
|
|
50
|
+
| archive_kma | 韩国气象厅 | 12km | 每6小时 | 0-288小时 | 2025-09-19至今 |
|
|
51
|
+
| archive_mfa | 法国气象局 | 25km | 每6小时 | 0-96小时 | 2025-09-19至今 |
|
|
52
|
+
| archive_ukmo | 英国气象局 | 10km | 每6小时 | 0-168小时 | 2025-09-19至今 |
|
|
53
|
+
|
|
54
|
+
## 逐小时要素总览
|
|
55
|
+
|
|
56
|
+
这里列出了部分支持的逐小时变量,每个数据源提供的有些许差异,请到数据源详情查找,缺省值用null表示
|
|
57
|
+
|
|
58
|
+
### 地面要素
|
|
59
|
+
|
|
60
|
+
| 名称 | 单位 | 说明 |
|
|
61
|
+
|------|------|------|
|
|
62
|
+
| **温度类** | | |
|
|
63
|
+
| temperature_2m | °C | 2米气温 |
|
|
64
|
+
| apparent_temperature | °C | 体感温度 |
|
|
65
|
+
| wet_bulb_temperature_2m | °C | 2米湿球温度 |
|
|
66
|
+
| dew_point_2m | °C | 2米露点温度 |
|
|
67
|
+
| skin_temperature | °C | 地表温度 |
|
|
68
|
+
| surface_temperature | °C | 地表温度 |
|
|
69
|
+
| freezing_level_height | m | 冻结层高度,0度层高度 |
|
|
70
|
+
| **湿度类** | | |
|
|
71
|
+
| relative_humidity_2m | % | 2米相对湿度 |
|
|
72
|
+
| vapour_pressure_deficit | hPa | 饱和水汽压差 |
|
|
73
|
+
| total_column_integrated_water_vapour | kg/m² | 整层水汽含量 |
|
|
74
|
+
| **风类** | | |
|
|
75
|
+
| wind_speed_10m | m/s | 10米风速 |
|
|
76
|
+
| wind_speed_100m | m/s | 100米风速 |
|
|
77
|
+
| wind_direction_10m | ° | 10米风向 |
|
|
78
|
+
| wind_direction_100m | ° | 100米风向 |
|
|
79
|
+
| wind_gusts_10m | m/s | 10米阵风 |
|
|
80
|
+
| updraft | m/s | 上升气流 |
|
|
81
|
+
| **降水/积雪类** | | |
|
|
82
|
+
| precipitation | mm | 降水量 |
|
|
83
|
+
| precipitation_probability | % | 降水概率 |
|
|
84
|
+
| precipitation_type | - | 降水类型 |
|
|
85
|
+
| rain | mm | 降雨量 |
|
|
86
|
+
| rain_probability | % | 降雨概率 |
|
|
87
|
+
| showers | mm | 阵雨量 |
|
|
88
|
+
| snowfall | cm | 降雪量 |
|
|
89
|
+
| snowfall_probability | % | 降雪概率 |
|
|
90
|
+
| snowfall_water_equivalent | mm | 降雪水当量 |
|
|
91
|
+
| snowfall_height | m | 降雪高度 |
|
|
92
|
+
| hail | mm | 冰雹量 |
|
|
93
|
+
| freezing_rain_probability | % | 冻雨概率 |
|
|
94
|
+
| ice_pellets_probability | % | 冰粒概率 |
|
|
95
|
+
| snow_depth | m | 积雪深度 |
|
|
96
|
+
| snow_depth_water_equivalent | mm | 积雪水当量 |
|
|
97
|
+
| **云类** | | |
|
|
98
|
+
| cloud_cover | % | 总云量 |
|
|
99
|
+
| cloud_cover_high | % | 高云量 |
|
|
100
|
+
| cloud_cover_low | % | 低云量 |
|
|
101
|
+
| cloud_cover_mid | % | 中云量 |
|
|
102
|
+
| cloud_cover_2m | % | 2米云量 |
|
|
103
|
+
| cloud_base | m | 云底高度 |
|
|
104
|
+
| cloud_top | m | 云顶高度 |
|
|
105
|
+
| convective_cloud_base | m | 对流云底高度 |
|
|
106
|
+
| convective_cloud_top | m | 对流云顶高度 |
|
|
107
|
+
| **辐射类** | | |
|
|
108
|
+
| shortwave_radiation | W/m² | 短波辐射 |
|
|
109
|
+
| shortwave_radiation_clear_sky | W/m² | 晴天短波辐射 |
|
|
110
|
+
| direct_radiation | W/m² | 直接辐射 |
|
|
111
|
+
| direct_normal_irradiance | W/m² | 直接法线辐照度 |
|
|
112
|
+
| diffuse_radiation | W/m² | 散射辐射 |
|
|
113
|
+
| diffuse_radiation_instant | W/m² | 瞬时散射辐射 |
|
|
114
|
+
| global_tilted_irradiance | W/m² | 倾斜辐照度 |
|
|
115
|
+
| terrestrial_radiation | W/m² | 地球辐射 |
|
|
116
|
+
| longwave_radiation_downward | W/m² | 向下长波辐射 |
|
|
117
|
+
| shortwave_radiation_upward | W/m² | 向上短波辐射 |
|
|
118
|
+
| longwave_radiation_upward | W/m² | 向上长波辐射 |
|
|
119
|
+
| **土壤类** | | |
|
|
120
|
+
| soil_moisture_0_to_7cm | m³/m³ | 0-7厘米土壤湿度 |
|
|
121
|
+
| soil_moisture_7_to_28cm | m³/m³ | 7-28厘米土壤湿度 |
|
|
122
|
+
| soil_moisture_28_to_100cm | m³/m³ | 28-100厘米土壤湿度 |
|
|
123
|
+
| soil_moisture_100_to_255cm | m³/m³ | 100-255厘米土壤湿度 |
|
|
124
|
+
| soil_temperature_0_to_7cm | °C | 0-7厘米土壤温度 |
|
|
125
|
+
| soil_temperature_7_to_28cm | °C | 7-28厘米土壤温度 |
|
|
126
|
+
| soil_temperature_28_to_100cm | °C | 28-100厘米土壤温度 |
|
|
127
|
+
| soil_temperature_100_to_200cm | °C | 100-200厘米土壤温度 |
|
|
128
|
+
| **气压类** | | |
|
|
129
|
+
| pressure_msl | hPa | 海平面气压 |
|
|
130
|
+
| surface_pressure | hPa | 地表气压 |
|
|
131
|
+
| surface_air_pressure | hPa | 地表气压 |
|
|
132
|
+
| pressure_80m | hPa | 80米气压 |
|
|
133
|
+
| **对流/大气稳定度类** | | |
|
|
134
|
+
| cape | J/kg | 对流有效位能 |
|
|
135
|
+
| convective_inhibition | J/kg | 对流抑制 |
|
|
136
|
+
| lifted_index | °C | 抬升指数 |
|
|
137
|
+
| lightning_potential | - | 闪电潜势 |
|
|
138
|
+
| thunderstorm_probability | % | 雷暴概率 |
|
|
139
|
+
| **其他要素** | | |
|
|
140
|
+
| sunshine_duration | s | 日照时长 |
|
|
141
|
+
| uv_index | - | 紫外线指数 |
|
|
142
|
+
| uv_index_clear_sky | - | 晴天紫外线指数 |
|
|
143
|
+
| visibility | m | 能见度 |
|
|
144
|
+
| boundary_layer_height | m | 边界层高度 |
|
|
145
|
+
| albedo | - | 反照率 |
|
|
146
|
+
| et0_fao_evapotranspiration | mm | FAO参考作物蒸散发 |
|
|
147
|
+
| evapotranspiration | mm | 蒸散发 |
|
|
148
|
+
| runoff | mm | 径流 |
|
|
149
|
+
| latent_heat_flux | W/m² | 潜热通量 |
|
|
150
|
+
| sensible_heat_flux | W/m² | 感热通量 |
|
|
151
|
+
|
|
152
|
+
### 等压面要素
|
|
153
|
+
|
|
154
|
+
| 名称 | 单位 | 说明 |
|
|
155
|
+
|------|------|------|
|
|
156
|
+
| temperature | °C | 温度 |
|
|
157
|
+
| geopotential_height | m | 位势高度 |
|
|
158
|
+
| relative_humidity | % | 相对湿度 |
|
|
159
|
+
| wind_speed | m/s | 风速 |
|
|
160
|
+
| wind_direction | ° | 风向 |
|
|
161
|
+
| dew_point | °C | 露点温度 |
|
|
162
|
+
| cloudcover | % | 云量 |
|
|
163
|
+
| cloud_cover | % | 云量 |
|
|
164
|
+
| vertical_velocity | m/s | 垂直速度 |
|
|
165
|
+
|
|
166
|
+
需要与等压面结合起来调用,比如`temperature_1000hPa`表示1000百帕的温度,常用的等压面有:1000hPa,925hPa,850hPa,500hPa,200hPa
|
|
167
|
+
|
mirror_earth_mcp-0.2.0/src/mirror_earth_mcp/references/archive-forecast-models/archive_aifs.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 欧洲中期天气预报中心历史预报 (archive_aifs)
|
|
3
|
+
description: ECMWF AIFS 历史预报数据,25km分辨率
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 基本信息
|
|
7
|
+
|
|
8
|
+
| 项目 | 详情 |
|
|
9
|
+
|------|------|
|
|
10
|
+
| **数据源名称** | archive_aifs |
|
|
11
|
+
| **来源** | 欧洲中期天气预报中心(AI 预报模型) |
|
|
12
|
+
| **分辨率** | 25km |
|
|
13
|
+
| **时间分辨率** | 6小时 |
|
|
14
|
+
| **更新频率** | 每6小时 |
|
|
15
|
+
| **预报时长** | 每次0-360小时 |
|
|
16
|
+
| **数据覆盖** | 全球 |
|
|
17
|
+
| **可用时间范围** | 2025-09-19至今 |
|
|
18
|
+
|
|
19
|
+
## 使用示例
|
|
20
|
+
|
|
21
|
+
请求示例:
|
|
22
|
+
|
|
23
|
+
`https://api.mirror-earth.com/v1/archive-forecast?latitude=32.0&longitude=118.0&hourly=temperature_2m&models=archive_aifs&start_hour=2025-12-01T00:00&forecast_hours=48&timezone=auto&apikey=`
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## 支持的要素
|
|
27
|
+
|
|
28
|
+
### 地面要素
|
|
29
|
+
|
|
30
|
+
| 名称 | 单位 | 说明 |
|
|
31
|
+
|------|------|------|
|
|
32
|
+
| **温度类** | | |
|
|
33
|
+
| temperature_2m | °C | 2米气温 |
|
|
34
|
+
| surface_temperature | °C | 地表温度 |
|
|
35
|
+
| **湿度类** | | |
|
|
36
|
+
| relative_humidity_2m | % | 2米相对湿度 |
|
|
37
|
+
| **风类** | | |
|
|
38
|
+
| wind_speed_10m | m/s | 10米风速 |
|
|
39
|
+
| wind_direction_10m | ° | 10米风向 |
|
|
40
|
+
| wind_speed_100m | m/s | 100米风速 |
|
|
41
|
+
| wind_direction_100m | ° | 100米风向 |
|
|
42
|
+
| **降水/积雪类** | | |
|
|
43
|
+
| precipitation | mm | 降水量 |
|
|
44
|
+
| rain | mm | 降雨量 |
|
|
45
|
+
| showers | mm | 阵雨量 |
|
|
46
|
+
| snowfall | cm | 降雪量 |
|
|
47
|
+
| **云类** | | |
|
|
48
|
+
| cloud_cover | % | 总云量 |
|
|
49
|
+
| cloud_cover_low | % | 低云量 |
|
|
50
|
+
| cloud_cover_mid | % | 中云量 |
|
|
51
|
+
| cloud_cover_high | % | 高云量 |
|
|
52
|
+
| **辐射类** | | |
|
|
53
|
+
| shortwave_radiation | W/m² | 短波辐射 |
|
|
54
|
+
| **气压类** | | |
|
|
55
|
+
| pressure_msl | hPa | 海平面气压 |
|
|
56
|
+
| **土壤类** | | |
|
|
57
|
+
| soil_temperature_0_to_7cm | °C | 0-7厘米土壤温度 |
|
|
58
|
+
| soil_temperature_7_to_28cm | °C | 7-28厘米土壤温度 |
|
|
59
|
+
| soil_moisture_0_to_7cm | m³/m³ | 0-7厘米土壤湿度 |
|
|
60
|
+
| soil_moisture_7_to_28cm | m³/m³ | 7-28厘米土壤湿度 |
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 中国气象局历史预报 (archive_cma)
|
|
3
|
+
description: CMA 历史预报数据,12.5km分辨率
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 基本信息
|
|
7
|
+
|
|
8
|
+
| 项目 | 详情 |
|
|
9
|
+
|------|------|
|
|
10
|
+
| **数据源名称** | archive_cma |
|
|
11
|
+
| **来源** | 中国气象局 |
|
|
12
|
+
| **分辨率** | 12.5km |
|
|
13
|
+
| **时间分辨率** | 3小时 |
|
|
14
|
+
| **更新频率** | 每6小时 |
|
|
15
|
+
| **预报时长** | 每次0-108小时 |
|
|
16
|
+
| **数据覆盖** | 全球 |
|
|
17
|
+
| **可用时间范围** | 2025-09-19至今 |
|
|
18
|
+
|
|
19
|
+
## 使用示例
|
|
20
|
+
|
|
21
|
+
请求示例:
|
|
22
|
+
|
|
23
|
+
`https://api.mirror-earth.com/v1/archive-forecast?latitude=32.0&longitude=118.0&hourly=temperature_2m&models=archive_cma&start_hour=2025-12-01T00:00&forecast_hours=48&timezone=auto&apikey=`
|
|
24
|
+
|
|
25
|
+
## 支持的要素
|
|
26
|
+
|
|
27
|
+
### 地面要素
|
|
28
|
+
|
|
29
|
+
| 名称 | 单位 | 说明 |
|
|
30
|
+
|------|------|------|
|
|
31
|
+
| **温度类** | | |
|
|
32
|
+
| temperature_2m | °C | 2米气温 |
|
|
33
|
+
| apparent_temperature | °C | 体感温度 |
|
|
34
|
+
| wet_bulb_temperature_2m | °C | 2米湿球温度 |
|
|
35
|
+
| dew_point_2m | °C | 2米露点温度 |
|
|
36
|
+
| surface_temperature | °C | 地表温度 |
|
|
37
|
+
| **气压/湿度类** | | |
|
|
38
|
+
| pressure_msl | hPa | 海平面气压 |
|
|
39
|
+
| surface_pressure | hPa | 地表气压 |
|
|
40
|
+
| relative_humidity_2m | % | 2米相对湿度 |
|
|
41
|
+
| vapour_pressure_deficit | hPa | 饱和水汽压差 |
|
|
42
|
+
| **风类** | | |
|
|
43
|
+
| wind_speed_10m | m/s | 10米风速 |
|
|
44
|
+
| wind_direction_10m | ° | 10米风向 |
|
|
45
|
+
| wind_speed_30m | m/s | 30米风速 |
|
|
46
|
+
| wind_direction_30m | ° | 30米风向 |
|
|
47
|
+
| wind_speed_50m | m/s | 50米风速 |
|
|
48
|
+
| wind_direction_50m | ° | 50米风向 |
|
|
49
|
+
| wind_speed_70m | m/s | 70米风速 |
|
|
50
|
+
| wind_direction_70m | ° | 70米风向 |
|
|
51
|
+
| wind_speed_100m | m/s | 100米风速 |
|
|
52
|
+
| wind_direction_100m | ° | 100米风向 |
|
|
53
|
+
| wind_speed_120m | m/s | 120米风速 |
|
|
54
|
+
| wind_direction_120m | ° | 120米风向 |
|
|
55
|
+
| wind_speed_140m | m/s | 140米风速 |
|
|
56
|
+
| wind_direction_140m | ° | 140米风向 |
|
|
57
|
+
| wind_speed_160m | m/s | 160米风速 |
|
|
58
|
+
| wind_direction_160m | ° | 160米风向 |
|
|
59
|
+
| wind_speed_180m | m/s | 180米风速 |
|
|
60
|
+
| wind_direction_180m | ° | 180米风向 |
|
|
61
|
+
| wind_speed_200m | m/s | 200米风速 |
|
|
62
|
+
| wind_direction_200m | ° | 200米风向 |
|
|
63
|
+
| wind_gusts_10m | m/s | 10米阵风 |
|
|
64
|
+
| **降水/积雪类** | | |
|
|
65
|
+
| precipitation | mm | 降水量 |
|
|
66
|
+
| precipitation_type | - | 降水类型 |
|
|
67
|
+
| showers | mm | 阵雨量 |
|
|
68
|
+
| snowfall | cm | 降雪量 |
|
|
69
|
+
| snow_depth | m | 积雪深度 |
|
|
70
|
+
| rain | mm | 降雨量 |
|
|
71
|
+
| **对流/大气稳定度类** | | |
|
|
72
|
+
| cape | J/kg | 对流有效位能 |
|
|
73
|
+
| convective_inhibition | J/kg | 对流抑制 |
|
|
74
|
+
| lifted_index | °C | 抬升指数 |
|
|
75
|
+
| **辐射/能量类** | | |
|
|
76
|
+
| sunshine_duration | s | 日照时长 |
|
|
77
|
+
| shortwave_radiation | W/m² | 短波辐射 |
|
|
78
|
+
| shortwave_radiation_clear_sky | W/m² | 晴天短波辐射 |
|
|
79
|
+
| direct_radiation | W/m² | 直接辐射 |
|
|
80
|
+
| direct_normal_irradiance | W/m² | 直接法线辐照度 |
|
|
81
|
+
| diffuse_radiation | W/m² | 散射辐射 |
|
|
82
|
+
| diffuse_radiation_instant | W/m² | 瞬时散射辐射 |
|
|
83
|
+
| global_tilted_irradiance | W/m² | 倾斜辐照度 |
|
|
84
|
+
| terrestrial_radiation | W/m² | 地球辐射 |
|
|
85
|
+
| terrestrial_radiation_instant | W/m² | 地球瞬时辐射 |
|
|
86
|
+
| **土壤类** | | |
|
|
87
|
+
| soil_temperature_0_to_10cm | °C | 0-10厘米土壤温度 |
|
|
88
|
+
| soil_temperature_10_to_40cm | °C | 10-40厘米土壤温度 |
|
|
89
|
+
| soil_temperature_40_to_100cm | °C | 40-100厘米土壤温度 |
|
|
90
|
+
| soil_temperature_100_to_200cm | °C | 100-200厘米土壤温度 |
|
|
91
|
+
| soil_moisture_0_to_10cm | m³/m³ | 0-10厘米土壤湿度 |
|
|
92
|
+
| soil_moisture_10_to_40cm | m³/m³ | 10-40厘米土壤湿度 |
|
|
93
|
+
| soil_moisture_40_to_100cm | m³/m³ | 40-100厘米土壤湿度 |
|
|
94
|
+
| soil_moisture_100_to_200cm | m³/m³ | 100-200厘米土壤湿度 |
|
|
95
|
+
| **其它** | | |
|
|
96
|
+
| visibility | m | 能见度 |
|
|
97
|
+
| weather_id | - | 天气代码 |
|
|
98
|
+
| is_day | - | 是否白天 |
|
|
99
|
+
| et0_fao_evapotranspiration | mm | FAO参考作物蒸散发 |
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
### 等压面要素
|
|
104
|
+
|
|
105
|
+
| 名称 | 单位 | 说明 |
|
|
106
|
+
|------|------|------|
|
|
107
|
+
| temperature | °C | 温度 |
|
|
108
|
+
| geopotential_height | m | 位势高度 |
|
|
109
|
+
| relative_humidity | % | 相对湿度 |
|
|
110
|
+
| wind_speed | m/s | 风速 |
|
|
111
|
+
| wind_direction | ° | 风向 |
|
|
112
|
+
| dew_point | °C | 露点温度 |
|
|
113
|
+
| cloud_cover | % | 云量 |
|
|
114
|
+
| vertical_velocity | m/s | 垂直速度 |
|
|
115
|
+
|
|
116
|
+
**等压面**
|
|
117
|
+
1000 hPa、975 hPa、950 hPa、925 hPa、900 hPa、850 hPa、800 hPa、775 hPa、750 hPa、700 hPa、650 hPa、600 hPa、550 hPa、500 hPa、450 hPa、400 hPa、350 hPa、300 hPa、275 hPa、250 hPa、225 hPa、200 hPa、175 hPa、150 hPa、125 hPa、100 hPa、70 hPa、50 hPa、30 hPa、20 hPa、10 hPa
|
|
118
|
+
|
|
119
|
+
> 注:等压面变量需与具体气压层(如 temperature_850hPa)结合使用。
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: 加拿大气象局历史预报 (archive_gem)
|
|
3
|
+
description: GEM 历史预报数据,15km分辨率
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 基本信息
|
|
7
|
+
|
|
8
|
+
| 项目 | 详情 |
|
|
9
|
+
|------|------|
|
|
10
|
+
| **数据源名称** | archive_gem |
|
|
11
|
+
| **来源** | 加拿大气象局 |
|
|
12
|
+
| **分辨率** | 15km |
|
|
13
|
+
| **时间分辨率** | 3小时 |
|
|
14
|
+
| **更新频率** | 每12小时 |
|
|
15
|
+
| **预报时长** | 每次0-240小时 |
|
|
16
|
+
| **数据覆盖** | 全球 |
|
|
17
|
+
| **可用时间范围** | 2025-09-19至今 |
|
|
18
|
+
|
|
19
|
+
## 使用示例
|
|
20
|
+
|
|
21
|
+
请求示例:
|
|
22
|
+
|
|
23
|
+
`https://api.mirror-earth.com/v1/archive-forecast?latitude=32.0&longitude=118.0&hourly=temperature_2m&models=archive_gem&start_hour=2025-12-01T00:00&forecast_hours=48&timezone=auto&apikey=`
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## 支持的要素
|
|
27
|
+
|
|
28
|
+
### 地面要素
|
|
29
|
+
|
|
30
|
+
| 名称 | 单位 | 说明 |
|
|
31
|
+
|------|------|------|
|
|
32
|
+
| **温度类** | | |
|
|
33
|
+
| temperature_2m | °C | 2米气温 |
|
|
34
|
+
| temperature_40m | °C | 40米气温 |
|
|
35
|
+
| temperature_80m | °C | 80米气温 |
|
|
36
|
+
| temperature_120m | °C | 120米气温 |
|
|
37
|
+
| apparent_temperature | °C | 体感温度 |
|
|
38
|
+
| dew_point_2m | °C | 2米露点温度 |
|
|
39
|
+
| wet_bulb_temperature_2m | °C | 2米湿球温度 |
|
|
40
|
+
| **湿度类** | | |
|
|
41
|
+
| relative_humidity_2m | % | 2米相对湿度 |
|
|
42
|
+
| vapour_pressure_deficit | hPa | 饱和水汽压差 |
|
|
43
|
+
| **风类** | | |
|
|
44
|
+
| wind_speed_10m | m/s | 10米风速 |
|
|
45
|
+
| wind_direction_10m | ° | 10米风向 |
|
|
46
|
+
| wind_speed_40m | m/s | 40米风速 |
|
|
47
|
+
| wind_direction_40m | ° | 40米风向 |
|
|
48
|
+
| wind_speed_80m | m/s | 80米风速 |
|
|
49
|
+
| wind_direction_80m | ° | 80米风向 |
|
|
50
|
+
| wind_speed_120m | m/s | 120米风速 |
|
|
51
|
+
| wind_direction_120m | ° | 120米风向 |
|
|
52
|
+
| wind_gusts_10m | m/s | 10米阵风 |
|
|
53
|
+
| **降水/积雪类** | | |
|
|
54
|
+
| precipitation | mm | 降水量 |
|
|
55
|
+
| showers | mm | 阵雨量 |
|
|
56
|
+
| snowfall | cm | 降雪量 |
|
|
57
|
+
| snowfall_water_equivalent | mm | 降雪水当量 |
|
|
58
|
+
| snow_depth | m | 积雪深度 |
|
|
59
|
+
| rain | mm | 降雨量 |
|
|
60
|
+
| **云类** | | |
|
|
61
|
+
| cloud_cover | % | 总云量 |
|
|
62
|
+
| cloud_cover_low | % | 低云量 |
|
|
63
|
+
| cloud_cover_mid | % | 中云量 |
|
|
64
|
+
| cloud_cover_high | % | 高云量 |
|
|
65
|
+
| **辐射类** | | |
|
|
66
|
+
| shortwave_radiation | W/m² | 短波辐射 |
|
|
67
|
+
| shortwave_radiation_instant | W/m² | 瞬时短波辐射 |
|
|
68
|
+
| direct_radiation | W/m² | 直接辐射 |
|
|
69
|
+
| direct_radiation_instant | W/m² | 瞬时直接辐射 |
|
|
70
|
+
| direct_normal_irradiance | W/m² | 直接法线辐照度 |
|
|
71
|
+
| direct_normal_irradiance_instant | W/m² | 瞬时直接法线辐照度 |
|
|
72
|
+
| diffuse_radiation | W/m² | 散射辐射 |
|
|
73
|
+
| diffuse_radiation_instant | W/m² | 瞬时散射辐射 |
|
|
74
|
+
| global_tilted_irradiance | W/m² | 倾斜辐照度 |
|
|
75
|
+
| global_tilted_irradiance_instant | W/m² | 瞬时倾斜辐照度 |
|
|
76
|
+
| terrestrial_radiation | W/m² | 地球辐射 |
|
|
77
|
+
| terrestrial_radiation_instant | W/m² | 地球瞬时辐射 |
|
|
78
|
+
| **气压类** | | |
|
|
79
|
+
| pressure_msl | hPa | 海平面气压 |
|
|
80
|
+
| surface_pressure | hPa | 地表气压 |
|
|
81
|
+
| **土壤类** | | |
|
|
82
|
+
| soil_temperature_0_to_10cm | °C | 0-10厘米土壤温度 |
|
|
83
|
+
| soil_moisture_0_to_10cm | m³/m³ | 0-10厘米土壤湿度 |
|
|
84
|
+
| **对流/大气稳定度类** | | |
|
|
85
|
+
| cape | J/kg | 对流有效位能 |
|
|
86
|
+
| **其他要素** | | |
|
|
87
|
+
| weather_id | - | 天气代码 |
|
|
88
|
+
| is_day | - | 是否白天 |
|
|
89
|
+
| sunshine_duration | s | 日照时长 |
|
|
90
|
+
| et0_fao_evapotranspiration | mm | FAO参考作物蒸散发 |
|
|
91
|
+
| visibility | m | 能见度 |
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
### 等压面要素
|
|
96
|
+
|
|
97
|
+
支持以下等压面(1015, 1000, 985, 970, 950, 925, 900, 875, 850, 800, 750, 700, 650, 600, 550, 500, 450, 400, 350, 300, 275, 250, 225, 200, 175, 150, 100, 50, 30, 20, 10 hPa):
|
|
98
|
+
|
|
99
|
+
| 名称 | 单位 | 说明 |
|
|
100
|
+
|------|------|------|
|
|
101
|
+
| temperature | °C | 温度 |
|
|
102
|
+
| dew_point | °C | 露点温度 |
|
|
103
|
+
| relative_humidity | % | 相对湿度 |
|
|
104
|
+
| wind_speed | m/s | 风速 |
|
|
105
|
+
| wind_direction | ° | 风向 |
|
|
106
|
+
| geopotential_height | m | 位势高度 |
|
|
107
|
+
| cloud_cover | % | 云量 |
|
|
108
|
+
|
|
109
|
+
> 注:等压面变量需与具体气压层(如 temperature_850hPa)结合使用。
|