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
In the attached screenshot you can see the maxtemp is incorrect. I'm not sure the source, I looked at the code and it seems correct.
The text was updated successfully, but these errors were encountered:
i think instead of this:
lomax = thdata[...,1].max() posmax = thdata[...,1].argmax() mcol,mrow = divmod(posmax,width) himax = thdata[mcol][mrow][0] lomax=lomax*256 maxtemp = himax+lomax maxtemp = (maxtemp/64)-273.15 maxtemp = round(maxtemp,2)
we need to do this:
wat = np.add(thdata[...,0], np.multiply(thdata[...,1], 256)) maxtemp = wat[...].max() posmax = wat[...].argmax() mcol, mrow = divmod(posmax, width) maxtemp = (maxtemp/64) - 273.15
Sorry, something went wrong.
No branches or pull requests
In the attached screenshot you can see the maxtemp is incorrect. I'm not sure the source, I looked at the code and it seems correct.
The text was updated successfully, but these errors were encountered: