Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ 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: Added Crop and Clip Methods to Function Class [#817](https://github.com/RocketPy-Team/RocketPy/pull/817)
- DOC: Add Flight class usage documentation and update index [#841](https://github.com/RocketPy-Team/RocketPy/pull/841)
- ENH: Discretized and No-Pickle Encoding Options [#827] (https://github.com/RocketPy-Team/RocketPy/pull/827)
Expand Down
2 changes: 2 additions & 0 deletions rocketpy/environment/weather_model_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class WeatherModelMapping:
"latitude": "latitude",
"longitude": "longitude",
"level": "level",
"ensemble": "number",
"temperature": "t",
"surface_geopotential_height": None,
"geopotential_height": None,
Expand All @@ -44,6 +45,7 @@ class WeatherModelMapping:
"latitude": "latitude",
"longitude": "longitude",
"level": "pressure_level",
"ensemble": "number",
"temperature": "t",
"surface_geopotential_height": None,
"geopotential_height": None,
Expand Down
Loading