Skip to content
Snippets Groups Projects
Commit b70136d6 authored by Simon Grasse's avatar Simon Grasse
Browse files

remove unused propery

parent 719fc786
No related branches found
No related tags found
1 merge request!11Creation of first beta release version
......@@ -143,10 +143,6 @@ class RegularGrid(GridDefinition):
def coord_to_index(self, coord, x0_axis, d_axis):
return (np.ceil(coord / d_axis) - x0_axis / d_axis).astype(int)
@property
def grid_points(self): # has to be same as returned from REST-API
return np.dstack(np.meshgrid(self.lat, self.lon)).reshape(-1, 2)
def get_empty_grid(
self, time: pd.DatetimeIndex, metadata: pd.DataFrame
) -> xr.Dataset: # TODO make CF-compliant => docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment