We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eef3ecc commit d652702Copy full SHA for d652702
src/py_eddy_tracker/dataset/grid.py
@@ -693,7 +693,7 @@ def eddy_identification(
693
if filtering is 'highpass':
694
data = data - gaussian_filter(data, filtering_scale)
695
if filtering is 'lowpass':
696
- data = data - gaussian_filter(data, filtering_scale)
+ data = gaussian_filter(data, filtering_scale)
697
698
699
# we remove noisy information
0 commit comments