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
other.kdTree.find_nearest_index in calc_lut returning no result with max_dist defined, results are returned without defining max_dist.
other.kdTree.find_nearest_index
calc_lut
The text was updated successfully, but these errors were encountered:
The problem is this line here: https://github.com/TUW-GEO/pygeogrids/blob/master/src/pygeogrids/nearest_neighbor.py#L214
np.all tests whether all array elements along a given axis evaluate to True.
np.all
The correct test would be: np.all(np.isfinite(d) == False)
Sorry, something went wrong.
Fixes #73
bcc029d
d54ea73
No branches or pull requests
other.kdTree.find_nearest_index
incalc_lut
returning no result with max_dist defined, results are returned without defining max_dist.The text was updated successfully, but these errors were encountered: