Conversation
Add one-hour autoregressive COSMO-REA forecasts at rea6 and rea2, conditioned on the previous state and target-time ERA5 data. Configure the default package location at hf://nvidia/stormcast-cosmo-era5. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds
StormCastEurope, an autoregressive prognostic downscaling model for the European domain. Given the current state and the target-time ERA5 fields, it predicts the next hourly state,p(REA_{t+1} | REA_t, ERA5_{t+1})and rolls out autoregressively. It is available at two resolutions: rea6 (COSMO-REA6, roughly 6 km) and rea2 (COSMO-REA2, roughly 2.2 km). It shares its variable channels with the CorrDiff-COSMO Europe downscaler, so the two can be used on the same fields, CorrDiff for single-shot downscaling and StormCastEurope for hourly temporal consitent rollouts.ERA5 conditioning is supplied through any
DataSourceorForecastSource; the wrapper regrids and normalizes ERA5 onto the COSMO grid and concatenates it with the previous state as the diffusion condition. Physical constraints are optional and applied in physical space each step (per-variable bounds together with a shortwave solar gate), and passingconstraints=Noneruns the model unconstrained. Extended static invariants (elevation, land fraction, and latitude/longitude encodings) are loaded from the package.Hub-height wind is an optional, output-only derivation that is emitted but never fed back into the rollout. Sub-domain inference is available through
set_domain(...), which crops to a latitude/longitude bounding box with patch alignment and a NATTEN minimum-domain check.Checklist
Dependencies
Adds the
stormcast-europeextra (earth2studio[cosmo]+nvidia-physicsnemo>=2.2.0a0+scipy>=1.15.2), added toall. Likecosmo/stormcast-conus, PhysicsNeMo is git-pinned via[tool.uv.sources]until thenatten2d_rope(RoPE) operator ships on PyPI.