-
Notifications
You must be signed in to change notification settings - Fork 19
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
Replace data backend and increase flexibility. #39
Conversation
Codecov Report
@@ Coverage Diff @@
## main #39 +/- ##
==========================================
+ Coverage 91.48% 92.48% +1.00%
==========================================
Files 19 22 +3
Lines 963 972 +9
==========================================
+ Hits 881 899 +18
+ Misses 82 73 -9
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@jspaezp, on second thought, I'll update the docs in a separate PR. This one is large enough 😅 |
AssertionError | ||
Indicates that the two dictionaries are not equal. | ||
""" | ||
bad_keys = [] |
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.
I believe this test will not test correctly in both directions (if dict1 is empty but dict2 isnt it will pass)
This PR migrate the data backend for Depthcharge from HDF5 to Apache Arrow-based formats, and updates the API in the process.
Overall this PR simplifies the code base and allows for more flexibility in data parsing and usage for advanced users. Please note that I'm still adding documentation, but the code itself is ready for review.