Skip to content

Commit

Permalink
add window size
Browse files Browse the repository at this point in the history
  • Loading branch information
mmann1123 committed Dec 17, 2024
1 parent 989a20c commit 0108a89
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def test_linear_interpolation(self):
if not os.path.exists(tmp):
os.mkdir(tmp)
out_path = Path(tmp) / "test.tif"
with gw.series(self.files, transfer_lib="jax") as src:
with gw.series(
self.files, transfer_lib="jax", window_size=[256, 256]
) as src:
src.apply(
func=interpolate_nan(
interp_type="linear",
Expand Down

0 comments on commit 0108a89

Please sign in to comment.