-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 interp for interpolating between chunks of data (dask) #4155
Merged
Merged
Changes from 39 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
62c6385
Implement interp for interpolating between chunks of data (dask)
f6f7dad
do not forget extra points at the end
b0d8a5f
add tests
1a31457
add whats-new comment
9933c73
fix isort / black
cea826b
typo
44bbedf
update pull number
067b7f3
fix github pep8 warnigns
c47a1d5
fix isort
7d505a1
clearer arguments in _dask_aware_interpnd
423b36d
typo
85ff539
fix for datetimelike index
6e9b50e
chunked interpolation does not work for high order interpolation (qua…
c63636f
Merge branch 'upstream' into chunked_interp
86cb592
fix whats new
5e26a4e
remove a useless import
3ca6e6d
use Variable instead of InexVariable
a131b21
avoid some list to tuple conversion
67d2b36
black fix
f485958
more comments to explain _compute_chunks
42f8a3b
For orthogonal linear- and nearest-neighbor interpolation, the scalar…
ec3c400
better detection of Advanced interpolation
e231954
implement support of unsorted interpolation destination
061f5a8
rework the tests
623cb0b
fix for datetime index (bug introduced with unsorted destination)
b66d123
Variable is cheaber that DataArray
e211127
add warning if unsorted
e610268
simplify _compute_chunks
7547d56
add ghosts point in order to make quadratic and cubic method work in…
fd936dd
black
24f9460
forgot to remove an exception in test_upsample_interpolate_dask
dd2f273
fix filtering out-of-order warning
49bdefa
use extrapolate to check external points
d280867
Revert "add ghosts point in order to make quadratic and cubic method …
aeb7be1
Complete rewrite using blockwise
3c7d8c6
Merge branch 'upstream' into chunked_interp
0bc35d2
update whats-new.rst
0d5f618
reduce the diff
290a075
more decomposition of orthogonal interpolation
3f8718e
simplify _dask_aware_interpnd a little
562d5aa
fix dask interp when chunks are not aligned
62f059c
continue simplifying _dask_aware_interpnd
3d4d45c
update whats-new.rst
b60cddf
clean tests
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
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.
Nice improvement!