Skip to content

Commit 938f3c9

Browse files
authored
fix: swap meshgrid dimension ordering in xarray grid creation (#249)
1 parent 33f7919 commit 938f3c9

File tree

1 file changed

+15
-4
lines changed
  • src/anemoi/datasets/create/sources/xarray_support

1 file changed

+15
-4
lines changed

src/anemoi/datasets/create/sources/xarray_support/grid.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def __init__(self, lat: Any, lon: Any, variable_dims: Any) -> None:
6161
super().__init__()
6262
self.lat = lat
6363
self.lon = lon
64+
self.variable_dims = variable_dims
6465

6566

6667
class XYGrid(Grid):
@@ -86,10 +87,20 @@ class MeshedGrid(LatLonGrid):
8687
@cached_property
8788
def grid_points(self) -> Tuple[Any, Any]:
8889
"""Get the grid points for the meshed grid."""
89-
lat, lon = np.meshgrid(
90-
self.lat.variable.values,
91-
self.lon.variable.values,
92-
)
90+
91+
if self.variable_dims == (self.lon.variable.name, self.lat.variable.name):
92+
lat, lon = np.meshgrid(
93+
self.lat.variable.values,
94+
self.lon.variable.values,
95+
)
96+
elif self.variable_dims == (self.lat.variable.name, self.lon.variable.name):
97+
lon, lat = np.meshgrid(
98+
self.lon.variable.values,
99+
self.lat.variable.values,
100+
)
101+
102+
else:
103+
raise NotImplementedError(f"MeshedGrid.grid_points: unrecognized variable_dims {self.variable_dims}")
93104

94105
return lat.flatten(), lon.flatten()
95106

0 commit comments

Comments
 (0)