You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 316 of eto.py in the eto_hargreaves() function should compare the sizes of the three input arrays, but only includes ".size" on the first boolean argument, resulting in an error when running function.
Current syntax: if daily_tmin_celsius.size != daily_tmax_celsius != daily_tmean_celsius:
Correct syntax: if daily_tmin_celsius.size != daily_tmax_celsius.size != daily_tmean_celsius.size:
Perhaps this wasn't an issue with certain dependency versions, but on python 3.12.8 I'm getting an error:
"The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
The text was updated successfully, but these errors were encountered:
Line 316 of eto.py in the eto_hargreaves() function should compare the sizes of the three input arrays, but only includes ".size" on the first boolean argument, resulting in an error when running function.
Current syntax:
if daily_tmin_celsius.size != daily_tmax_celsius != daily_tmean_celsius:
Correct syntax:
if daily_tmin_celsius.size != daily_tmax_celsius.size != daily_tmean_celsius.size:
Perhaps this wasn't an issue with certain dependency versions, but on python 3.12.8 I'm getting an error:
"The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
The text was updated successfully, but these errors were encountered: