We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The code tries to handle temperature in C and K but the handling isn't great or complete.
This line in wetbulb will break if ta is in C: delta_t=(ta-t_dewpoint)/steps At this point, ta is still in C but t_dewpoint is in K.
delta_t=(ta-t_dewpoint)/steps
Possible solution: add a function to convert ta to K.
The text was updated successfully, but these errors were encountered:
Was wondering if it might be useful to use Pint and then noticed pint-xarray is a thing, and pint in cf-xarray is a work in progress.
Sorry, something went wrong.
Now using metpy which solves this problem.
No branches or pull requests
The code tries to handle temperature in C and K but the handling isn't great or complete.
This line in wetbulb will break if ta is in C:
delta_t=(ta-t_dewpoint)/steps
At this point, ta is still in C but t_dewpoint is in K.
Possible solution: add a function to convert ta to K.
The text was updated successfully, but these errors were encountered: