-
Notifications
You must be signed in to change notification settings - Fork 3
Updated hash key generation to handle missing encoding dtype. #167
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
Merged
david-sh-csiro
merged 6 commits into
main
from
166-multifile-datasets-dont-work-with-cache-key-generation
Jan 21, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e4f4218
Updated hash key generation to handling missing encoding dtype. Also …
david-sh-csiro 3b85b89
Added comment to describe xarray bug mitigation.
david-sh-csiro 04b0cab
Added multifile dataset caching test.
david-sh-csiro 2b18684
Added seperate unit test for ugrid and cfgrid conventions for testing…
david-sh-csiro f61c8a9
Updated development rst to include correct issue and pr.
david-sh-csiro 38926af
Added fixtures for multifile datasets.
david-sh-csiro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+40.1 KB
tests/datasets/multifile_datasets/ugrid_mesh2d/ugrid_mesh2d_2024-01-01.nc
Binary file not shown.
Binary file added
BIN
+40.1 KB
tests/datasets/multifile_datasets/ugrid_mesh2d/ugrid_mesh2d_2024-01-02.nc
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The
dtypeencoding value should be present most of the time. It being missing is an unexpected exception to the norm. Without the context of this bug checkingdata_array.values.dtypelooks unnecessary.Please add brief one or two line description of why we are doing this extra step, and include a link to the xarray bug report tracking this issue: pydata/xarray#2436
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've added a comment with issue link and a simple description.