-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# (C) Copyright 2024 Anemoi contributors. | ||
# | ||
# This software is licensed under the terms of the Apache Licence Version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# In applying this licence, ECMWF does not waive the privileges and immunities | ||
# granted to it by virtue of its status as an intergovernmental organisation | ||
# nor does it submit to any jurisdiction. | ||
|
||
|
||
from collections import defaultdict | ||
|
||
from earthkit.data.indexing.fieldlist import FieldArray | ||
|
||
|
||
class NewDataField: | ||
def __init__(self, field, data, new_name): | ||
self.field = field | ||
self.data = data | ||
self.new_name = new_name | ||
|
||
def to_numpy(self, *args, **kwargs): | ||
return self.data | ||
|
||
def metadata(self, key=None, **kwargs): | ||
if key is None: | ||
return self.field.metadata(**kwargs) | ||
|
||
value = self.field.metadata(key, **kwargs) | ||
if key == "param": | ||
return self.new_name | ||
return value | ||
|
||
def __getattr__(self, name): | ||
return getattr(self.field, name) | ||
|
||
|
||
def execute(context, input, orog, z="z"): | ||
"""Convert orography [m] to z (geopotential height)""" | ||
result = FieldArray() | ||
|
||
processed_fields = defaultdict(dict) | ||
|
||
for f in input: | ||
key = f.metadata(namespace="mars") | ||
param = key.pop("param") | ||
if param == orog: | ||
key = tuple(key.items()) | ||
|
||
if param in processed_fields[key]: | ||
raise ValueError(f"Duplicate field {param} for {key}") | ||
|
||
output = f.to_numpy(flatten=True) * 9.80665 | ||
result.append(NewDataField(f, output, z)) | ||
else: | ||
result.append(f) | ||
|
||
return result |