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 d652702 commit 842748aCopy full SHA for 842748a
src/py_eddy_tracker/dataset/grid.py
@@ -692,8 +692,8 @@ def eddy_identification(
692
if filtering is not None and grid_height in ['zeta']:
693
if filtering is 'highpass':
694
data = data - gaussian_filter(data, filtering_scale)
695
- if filtering is 'lowpass':
696
- data = gaussian_filter(data, filtering_scale)
+ elif filtering is 'lowpass':
+ data[:] = gaussian_filter(data, filtering_scale)
697
698
699
# we remove noisy information
0 commit comments