-
Notifications
You must be signed in to change notification settings - Fork 75
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
Handle comparison to undefined nodata values #269
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3adb758
add function to make raster with nodata value undefined
emlys 8a6df92
allow undefined nodata value in seasonal water yield
emlys ec32ebd
replaced all usages of isclose to nodata with utils.is_valid
emlys d06db6b
fixed split line syntax error
emlys fc82e7b
added tests for utils.is_valid
emlys 22d7dfa
cleanup
emlys abef4d0
checkout SWY test from release/3.9
emlys 4400b4a
added detailed test for SWY with undefined nodata value
emlys 9ef2fc9
added HISTORY note
emlys 3011a63
cleanup
emlys 7e947fe
removing utils.is_valid from globio
emlys 7d553e4
globio tests passing
emlys 819cd46
removed utils.is_valid from coastal blue carbon
emlys f6f0edc
removed utils.is_valid from coastal_vulnerability
emlys 476f4e7
removed utils.is_valid from crop production percentile
emlys c25484a
removed utils.is_valid from crop production
emlys f64e695
removed utils.is_valid froom delineateit, habitat quality
emlys 4d258ec
fix seasonal_water_yield_core
emlys c9cc727
remove utils.is_valid from hydropower, ndr
emlys dc81973
removed utils.is_valid from routedem, scenic quality, sdr
emlys 07c96a9
added SWY test, removed utils.is_valid
emlys 339a2ad
remove utils.is_valid from rest of files
emlys be52fe9
fixed bug in coastal blue carbon
emlys 22903e6
cleanup
emlys 744a478
more small cleanup
emlys c029365
delete cython html file
emlys dee60d2
use slice(None) rather than True boolean array
emlys 36b920f
fixed typos
emlys b783c5c
requested changes for PR
emlys d26b15a
Merge branch 'release/3.9' into bug/228
emlys 547e90f
requested changes for PR
emlys 4026e6e
move nodata check outside of loop
emlys 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
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
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! this looks like it'll be a bit more efficient, as well as supporting the possibility of an undefined nodata value.