Skip to content

Commit

Permalink
support lambert_azimuthal_equal_area metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb authored Sep 12, 2024
1 parent 59fc21b commit ee24022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/earthkit/data/readers/grib/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def resolution(self):
assert x == y, (x, y)
return x

if grid_type == "lambert":
if grid_type in ["lambert", "lambert_azimuthal_equal_area"]:
x = self.metadata.get("DxInMetres")
y = self.metadata.get("DyInMetres")
assert x == y, (x, y)
Expand Down

0 comments on commit ee24022

Please sign in to comment.