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
Request: introduce parameters for rounding and capping upon grid export (modis/window.py), Explained in more detail below:
Rounding: as the value array is retrieved from HDF(s) here...
modape/modape/modis/window.py
Line 224 in 74e3805
Capping: all values in the retrieved array that are below or above the provided minimum or maximum respectively are set to nodata
The text was updated successfully, but these errors were encountered:
Remark: let's stay away from scaling by applying some factor (1/10000 typically) as this would require a change of output datatype
Sorry, something went wrong.
implemented with #104
Successfully merging a pull request may close this issue.
Request: introduce parameters for rounding and capping upon grid export (modis/window.py), Explained in more detail below:
Rounding: as the value array is retrieved from HDF(s) here...
modape/modape/modis/window.py
Line 224 in 74e3805
... next it would be to round values to an exponent of 10 (e.g. 2 => 10^2 = 100; rounding 10466 would become 10500)
Capping: all values in the retrieved array that are below or above the provided minimum or maximum respectively are set to nodata
The text was updated successfully, but these errors were encountered: