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
GDAL 3.5 added the types GDT_Int64 and GDT_UInt64. Using these types causes a KeyError in pygeoprocessing because they're missing from the _GDAL_TYPE_TO_NUMPY_LOOKUP dictionary. A user ran into this issue and reported it: https://community.naturalcapitalproject.org/t/keyerror-13-in-pygeoprocessing/4113
GDT_Int64
GDT_UInt64
KeyError
_GDAL_TYPE_TO_NUMPY_LOOKUP
I think all we have to do is add the new types to the dictionary.
The text was updated successfully, but these errors were encountered:
handle nan nodata in calculate_slope and test for it natcap#352
d3946c8
history note natcap#352
3e3afe2
use cython function for nodata comparison natcap#352
e817736
Successfully merging a pull request may close this issue.
GDAL 3.5 added the types
GDT_Int64
andGDT_UInt64
. Using these types causes aKeyError
in pygeoprocessing because they're missing from the_GDAL_TYPE_TO_NUMPY_LOOKUP
dictionary. A user ran into this issue and reported it: https://community.naturalcapitalproject.org/t/keyerror-13-in-pygeoprocessing/4113I think all we have to do is add the new types to the dictionary.
The text was updated successfully, but these errors were encountered: