-
Notifications
You must be signed in to change notification settings - Fork 141
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
Implement generic readers for HDF5 #731
Conversation
Borrowed from the generic CSV readers to support HDF5 files, adding the option to reduce the resolution of time fields while reading data in.
Codecov ReportBase: 94.79% // Head: 94.85% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #731 +/- ##
==========================================
+ Coverage 94.79% 94.85% +0.05%
==========================================
Files 168 169 +1
Lines 8190 8275 +85
Branches 1560 1581 +21
==========================================
+ Hits 7764 7849 +85
+ Misses 317 316 -1
- Partials 109 110 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
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.
Thanks. PR looks great 👍 Just needs one change to include new module in documentation:
diff --git a/docs/source/stonesoup.reader.rst b/docs/source/stonesoup.reader.rst
index ad668da2..b1f96573 100644
--- a/docs/source/stonesoup.reader.rst
+++ b/docs/source/stonesoup.reader.rst
@@ -20,6 +20,11 @@ YAML
.. automodule:: stonesoup.reader.yaml
:show-inheritance:
+HDF5
+----
+.. automodule:: stonesoup.reader.hdf5
+ :show-inheritance:
+
AISHub
------
.. automodule:: stonesoup.reader.aishub
Co-authored-by: Steven Hiscocks <[email protected]>
Borrowed from the generic CSV readers to support HDF5 files, adding the option to reduce the resolution of time fields while reading data in.