From a343a761f7ac451821bc19ef8176990dec329f4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Gon=C3=A7alves?= Date: Fri, 8 Aug 2025 17:53:15 +0100 Subject: [PATCH 1/2] MNT: Addition of ensemble variable to ECMWF dictionaries --- rocketpy/environment/weather_model_mapping.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rocketpy/environment/weather_model_mapping.py b/rocketpy/environment/weather_model_mapping.py index 59c6e2fd9..c8596d705 100644 --- a/rocketpy/environment/weather_model_mapping.py +++ b/rocketpy/environment/weather_model_mapping.py @@ -32,6 +32,7 @@ class WeatherModelMapping: "latitude": "latitude", "longitude": "longitude", "level": "level", + "ensemble": "number", "temperature": "t", "surface_geopotential_height": None, "geopotential_height": None, @@ -44,6 +45,7 @@ class WeatherModelMapping: "latitude": "latitude", "longitude": "longitude", "level": "pressure_level", + "ensemble": "number", "temperature": "t", "surface_geopotential_height": None, "geopotential_height": None, From b29a5c02a5f49315735c1bc104820a0b6fad880c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Gon=C3=A7alves?= Date: Mon, 18 Aug 2025 16:36:37 +0100 Subject: [PATCH 2/2] DEV: Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e71671961..6fa9bee17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). Attention: The newest changes should be on top --> ### Added - +- EHN: Addition of ensemble variable to ECMWF dictionaries [#842] (https://github.com/RocketPy-Team/RocketPy/pull/842) - ENH: Discretized and No-Pickle Encoding Options [#827] (https://github.com/RocketPy-Team/RocketPy/pull/827) - ENH: Add the Coriolis Force to the Flight class [#799](https://github.com/RocketPy-Team/RocketPy/pull/799)