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
raster2dggs/raster2dggs/h3.py
Line 214 in 575f91c
When running raster2dggs and expecting integer output:
raster2dggs h3 --verbosity DEBUG --resolution 13 --upscale 4 --compression zstd --threads 7 --aggfunc median --decimals 0 --overwrite --warp_mem_limit 12000 --resampling mode sentinel-2.input.vrt sentinel-2.output.h3.parquet
I get almost to the end and then get the following error:
pandas.errors.IntCastingNaNError: Cannot convert non-finite values (NA or inf) to integer
This is possible because we need to use a Int64 (note capitalisation) data type, as it supports NaN.
Int64
The text was updated successfully, but these errors were encountered:
015e98f
Merge pull request #7 from manaakiwhenua/iss-6
de7d92c
fixes #6
No branches or pull requests
raster2dggs/raster2dggs/h3.py
Line 214 in 575f91c
When running raster2dggs and expecting integer output:
I get almost to the end and then get the following error:
This is possible because we need to use a
Int64
(note capitalisation) data type, as it supports NaN.The text was updated successfully, but these errors were encountered: