-
Notifications
You must be signed in to change notification settings - Fork 76
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
Using vessel log data in downstream dataset #1344
Comments
At least for the |
And once it's in |
Oh I see what you mean. I was actually thinking to not interpolate, and simply plug in the entire variables, because the lat/lon would be duplicated from what Actually, maybe all we need is the distance, timestamp, and file_offset? I guess we should read the manual on that datagram association to see how the timing is associated along with the For MVBS, lat/lon are already bin-average if they are present in the Sv dataset, so again perhaps all we need is the distance, timestamp, and file_offset? |
To retain the same dimensions in
In the case where no interpolation is done and Although, since the variables themselves don't need to be stored with |
Ah I guess I didn't explain what I thought the next step would be. Since the way we use vessel log is to use the distance as markers, I was thinking that we can find the closest distance and use that corresponding |
Ah, I see now. I'll get to reading 🫡 |
me too! |
With #1318 , the vessel log data would be stored in the
Vendor_specific
group. However right now these data is not propagate down to the Sv and MVBS datasets if we need to use it.In theory one can just add the vessel log distance/lat/lon in when needed, directly from the
EchoData
object, but that does require very good provenance tracking so one can recover theEchoData
object used for calibration.I wonder if it would make sense to add an optional argument
include_idx_data=True/False
incompute_Sv
so that the these variables can be added to the Sv datasets at the last step before exiting.The same thing can be done with MVBS, but for that perhaps we just propagate whatever is in the Sv dataset by default, except for the variables that are bin-averaged.
@ctuguinay : thoughts?
The text was updated successfully, but these errors were encountered: