We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 92c3da1 + 3572fb6 commit 3253732Copy full SHA for 3253732
climetlab/readers/netcdf/field.py
@@ -84,7 +84,7 @@ def to_bounding_box(self):
84
)
85
86
@cached_property
87
- def projection(self):
+ def grid_mapping(self):
88
def tidy(x):
89
if isinstance(x, np.ndarray):
90
return x.tolist()
@@ -105,9 +105,6 @@ def tidy(x):
105
def grid_points(self):
106
return DataSet(self.owner.xr_dataset).grid_points(self.variable)
107
108
- def grid_points_xy(self):
109
- return DataSet(self.owner.xr_dataset).grid_points_xy(self.variable)
110
-
111
def to_numpy(self, reshape=True, dtype=None):
112
dimensions = dict((s.name, s.index) for s in self.slices)
113
values = self.owner.xr_dataset[self.variable].isel(dimensions).values
0 commit comments