# Uk Weather Da Eval

> Evaluates the impact of data assimilation (DA) using the SPEnKF algorithm on a U-STN12 deep learning model for UK temperature forecasting. It probes the model's ability to integrate global atmospheric data (ERA5 T850) and surface observations (ASOS/ERA5 T2m) over a 120-hour lead time, measuring forecast accuracy degradation or improvement under varying noise levels and assimilation frequencies. Use when the user wants to benchmark on ERA5, ASOS, or asks about evaluating this task. Reports RMSE.

- Skill: `qhjqhj00/uk-weather-da-eval` (Agent Skill)
- Install (CLI): `npx skillmds add qhjqhj00/uk-weather-da-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qhjqhj00/uk-weather-da-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: qhjqhj00 (https://skillmd.com/u/qhjqhj00)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/qhjqhj00/uk-weather-da-eval

---


# uk-weather-da-eval

> Data Assimilation using ERA5, ASOS, and the U-STN model for Weather Forecasting over the UK — Wenqi Wang et al. (2024) (arXiv:2401.07604, 2024)

## What this evaluates

Evaluates the impact of data assimilation (DA) using the SPEnKF algorithm on a U-STN12 deep learning model for UK temperature forecasting. It probes the model's ability to integrate global atmospheric data (ERA5 T850) and surface observations (ASOS/ERA5 T2m) over a 120-hour lead time, measuring forecast accuracy degradation or improvement under varying noise levels and assimilation frequencies.

## Datasets

- **ERA5** — total ?; splits: test (-1)
- **ASOS** — total ?; splits: test (-1)

## Metrics

- `RMSE` **(primary)** — range: other
  - Root Mean Square Error: RMSE = sqrt(mean((predicted - observed)^2)). Computed between the model's predicted mean and the noisy/synthetic observation data in the T850 domain over a 120-hour lead time.

## Input / output format

**Input**: Initial state derived from a noisy observation (ERA5 T850 with superimposed Gaussian noise or synthetic data). Assimilation of external data (synthetic, ASOS, or ERA5 T2m) occurs every 24 hours using SPEnKF.

**Output**: Predicted mean temperature field over a 120-hour lead time.

## Scoring recipe

```python
def compute_rmse(predictions, observations):
    # predictions, observations: numpy arrays of shape (time_steps, spatial_grid)
    squared_diff = (predictions - observations) ** 2
    mse = np.mean(squared_diff)
    return np.sqrt(mse)
```

## Common pitfalls

- The initial 12-hour RMSE increase is due to lack of training, not DA failure.
- Assimilating surface T2m data (ASOS or ERA5) degrades performance due to interpolation errors and distributional mismatch with atmospheric T850 data, contrary to expectations that more data always helps.
- Evaluations are averaged over 50 random conditions, not single deterministic runs.

## Evidence (verbatim from paper)

> We then analysed the root mean square error (RMSE) between the predicted mean and the noisy data in the `T850` domain over the initial 120 hours across 50 random conditions.

## Citation

```bibtex
@misc{wang2024dataassimilation,
  title={Data Assimilation using ERA5, ASOS, and the U-STN model for Weather Forecasting over the UK},
  author={Wenqi Wang et al. (2024)},
  year={2024},
  note={arXiv:2401.07604}
}
```

- arXiv: 2401.07604

