Skip to content

Commit d652702

Browse files
committed
Update grid.py
1 parent eef3ecc commit d652702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/py_eddy_tracker/dataset/grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ def eddy_identification(
693693
if filtering is 'highpass':
694694
data = data - gaussian_filter(data, filtering_scale)
695695
if filtering is 'lowpass':
696-
data = data - gaussian_filter(data, filtering_scale)
696+
data = gaussian_filter(data, filtering_scale)
697697

698698

699699
# we remove noisy information

0 commit comments

Comments
 (0)