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 60427e4 commit ffedbb0Copy full SHA for ffedbb0
echopype/clean/utils.py
@@ -210,9 +210,7 @@ def downsample_upsample_along_depth(
210
# Assign a depth bin index to each Sv depth value
211
bin_dim = f"{range_var}_bins"
212
depth_bin_assignment = xr.DataArray(
213
- np.digitize(
214
- ds_Sv[range_var], [interval.left for interval in downsampled_Sv[bin_dim].data]
215
- ),
+ np.digitize(ds_Sv[range_var], [interval.left for interval in downsampled_Sv[bin_dim].data]),
216
dims=["channel", "ping_time", "range_sample"],
217
)
218
0 commit comments