-
Notifications
You must be signed in to change notification settings - Fork 90
enh: add dimension alignment support for swap_dims_channel_frequency
#1500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,8 +11,6 @@ Most of these files are stored on Git LFS but the ones that aren't (due to file | |
| - 2019118 group2survey-D20191214-T081342.raw: Contains 6 channels but only 2 of those channels collect ping data | ||
| - D20200528-T125932.raw: Data collected from WBT mini (instead of WBT), from @emlynjdavies | ||
| - Green2.Survey2.FM.short.slow.-D20191004-T211557.raw: Contains 2-in-1 transducer, from @FletcherFT (reduced from 104.9 MB to 765 KB in test data updates) | ||
| - raw4-D20220514-T172704.raw: Contains RAW4 datagram, 1 channel only, from @cornejotux | ||
| - D20210330-T123857.raw: do not contain filter coefficients | ||
|
|
||
|
|
||
| ### EA640 | ||
|
|
@@ -24,7 +22,6 @@ Most of these files are stored on Git LFS but the ones that aren't (due to file | |
| - Winter2017-D20170115-T150122.raw: Contains a change of recording length in the middle of the file | ||
| - 2015843-D20151023-T190636.raw: Not used in tests but contains ranges are not constant across ping times | ||
| - SH1701_consecutive_files_w_range_change: Not used in tests. [Folder](https://drive.google.com/drive/u/1/folders/1PaDtL-xnG5EK3N3P1kGlXa5ub16Yic0f) on shared drive that contains sequential files with ranges that are not constant across ping times. | ||
| - NBP_B050N-D20180118-T090228.raw: split-beam setup without angle data | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am not sure why these keep on happening (I found these on my local machine too. I think it might be due to me not setting up the docker container again and just working with the files I already have, so the new ones did not get pulled in). Could you please put these lines back? Thanks! |
||
|
|
||
|
|
||
| ### AZFP | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What I was thinking was to make the
add_splitbeam_anglefunction agnostic of whether in the inputds_Svdataset has a dimension ofchannelorfrequency_nominal. So the function will work with the original dimension (channel) straight fromcompute_Sv, and will also work if the dimension has already been changed tofrequency_nominalbefore theadd_splitbeam_anglefunction is called. So not running theswap_dims_channel_frequencyunder the hood within this function, but made this functions acceptsds_Svwith either dimensions.Does the above make sense to you? So basically you can remove the added
use_frequency_nominalargument and just have the function accepting bothchannelandfrequency_nominalunder the hood.