We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nan
A raster with nan as nodata will yield nan values from extract_bathymetry_along_ray if any of the fetch ray overlaps nodata.
nodata
extract_bathymetry_along_ray
This looks like a case where we're using math.isclose where we should be using numpy.isclose(x, y, equal_nan=True).
math.isclose
numpy.isclose(x, y, equal_nan=True)
The text was updated successfully, but these errors were encountered:
add tests to cover nan nodata in bathymetry. natcap#1528
69fabb1
use numpy.isclose and check for equal nan. natcap#1528
a14f719
note for history. natcap#1528
086aade
fix indent. natcap#1528
beca6d7
davemfish
Successfully merging a pull request may close this issue.
A raster with
nan
asnodata
will yieldnan
values fromextract_bathymetry_along_ray
if any of the fetch ray overlaps nodata.This looks like a case where we're using
math.isclose
where we should be usingnumpy.isclose(x, y, equal_nan=True)
.The text was updated successfully, but these errors were encountered: