Skip to content

Commit 61013cc

Browse files
committed
Drop unreachable DriverDataCube.timeseries() #47
1 parent 44dfa1e commit 61013cc

2 files changed

Lines changed: 0 additions & 8 deletions

File tree

openeo_driver/datacube.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,6 @@ def aggregate_spatial(
202202
# TODO: drop `target_dimension`? see https://github.com/Open-EO/openeo-processes/issues/366
203203
self._not_implemented()
204204

205-
206-
def timeseries(self, x, y, srs="EPSG:4326") -> dict:
207-
# TODO #47: remove this non-standard process
208-
self._not_implemented()
209-
210205
def ndvi(self, nir: str = "nir", red: str = "red", target_band: Optional[str] = None) -> "DriverDataCube":
211206
self._not_implemented()
212207

openeo_driver/dummy/dummy_backend.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,6 @@ class DummyDataCube(DriverDataCube):
209209
def __init__(self, metadata: Optional[CubeMetadata] = None):
210210
super(DummyDataCube, self).__init__(metadata=metadata)
211211

212-
# TODO #47: remove this non-standard process?
213-
self.timeseries = Mock(name="timeseries", return_value={})
214-
215212
# TODO can we get rid of these non-standard "apply_tiles" processes?
216213
self.apply_tiles = Mock(name="apply_tiles", return_value=self)
217214
self.apply_tiles_spatiotemporal = Mock(name="apply_tiles_spatiotemporal", return_value=self)

0 commit comments

Comments
 (0)