Skip to content

Commit

Permalink
Add orog_to_z filter
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Nov 30, 2024
1 parent bc6273c commit 45171be
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions src/anemoi/datasets/create/functions/filters/orog_to_z.py
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

0 comments on commit 45171be

Please sign in to comment.