Skip to content

Commit 281b577

Browse files
committed
Add method
1 parent 10f42cb commit 281b577

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

src/py_eddy_tracker/observations/__init__.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,26 @@ def __len__(self):
2929

3030
def __eq__(self, other):
3131
raise Exception()
32-
32+
3333
def __iter__(self):
3434
raise Exception()
35-
35+
3636
def reset(self):
3737
raise Exception()
3838

3939
def fields(self):
4040
raise Exception()
4141

42+
def sort(self):
43+
raise Exception()
44+
45+
def argsort(self):
46+
raise Exception()
47+
48+
4249
class ZarrMemoryStore(Store):
4350
pass
4451

52+
4553
class RecordArrayStore(Store):
4654
pass

tests/test_store.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,10 @@ def test_size():
1616
pass
1717

1818
def test_reordering():
19+
pass
20+
21+
def test_zarr_read_subset_write_zarr():
22+
pass
23+
24+
def test_netcdf_read_subset_write_zarr():
1925
pass

0 commit comments

Comments
 (0)