-
Notifications
You must be signed in to change notification settings - Fork 13
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
[PR]: Update Regrid2 missing and fill value behaviors to align with CDAT and add unmapped_to_nan
arg for output data
#613
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
715b920
Adds unmapped_to_nan default and packs options for xesmf regridder
jasonb5 a8e7661
Fixes regrid2 replacing np.nan with _FillValue in input data
jasonb5 85d1c7c
Fix regrid2 `open_mfdataset()` support with Dask Arrays
tomvothecoder 7e900a0
Remove unneeded dask conversion logic
tomvothecoder 3743e97
Merge branch 'main' into regrid_nan_update
jasonb5 5aeee56
Fixes applying mask from input_grid
jasonb5 7af50a0
Fixes replacing 1e20 with nan after regridding
jasonb5 e193c1d
Fixes black formatting
jasonb5 dfc3ebc
Fixes applying mask
jasonb5 646a9a0
exclude nan or alternative missing values from horizontal regridding …
lee1043 6719f03
Adds omitted for cells that have no weight
jasonb5 56f18cb
Fixes pre-commit error
jasonb5 0b01f79
Update xcdat/regridder/regrid2.py
tomvothecoder 647a786
Adds unmapped_to_nan option to regrid2
jasonb5 79a4cd1
Adds missing test
jasonb5 fc17e7a
Update codecov-action to v4 and use token
tomvothecoder 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 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 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 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 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.
I extracted this section of code into its own private function and used an explicit for loop to make it more readable compared to list comprehension (IMO).
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.
Also I don't think Dask Arrays support
np.deg2rad
and/ornp.sin
withnp.nan
values, resulting inValueError: cannot convert float NaN to integer
in #615.