Skip to content

Commit 3253732

Browse files
committed
Merge branch 'develop' of https://github.com/ecmwf/climetlab into develop
2 parents 92c3da1 + 3572fb6 commit 3253732

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

climetlab/readers/netcdf/field.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def to_bounding_box(self):
8484
)
8585

8686
@cached_property
87-
def projection(self):
87+
def grid_mapping(self):
8888
def tidy(x):
8989
if isinstance(x, np.ndarray):
9090
return x.tolist()
@@ -105,9 +105,6 @@ def tidy(x):
105105
def grid_points(self):
106106
return DataSet(self.owner.xr_dataset).grid_points(self.variable)
107107

108-
def grid_points_xy(self):
109-
return DataSet(self.owner.xr_dataset).grid_points_xy(self.variable)
110-
111108
def to_numpy(self, reshape=True, dtype=None):
112109
dimensions = dict((s.name, s.index) for s in self.slices)
113110
values = self.owner.xr_dataset[self.variable].isel(dimensions).values

0 commit comments

Comments
 (0)