-
Hi all,
temps, rh, and dp all work well but wet bulb gives me the following error:
Any idea what might be the problem here? Thanks as always for all the help |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
type(sound_pres.data)
type(sound_temps.data)
type(sound_dp.data) Also, what happens if you use |
Beta Was this translation helpful? Give feedback.
I suspect something weird in xarray is happening (i.e., that(EDIT: see below discussion...it looks like this is just.data
is not converting its internalmemoryview
to a loadedndarray
), but am not sure.sound_dp
being a pint Quantity in this case.) Would you be able to list the following?Also, what happens if you use
.values
(which forcesndarray
) instead of.data
(which is just supposed to byndarray
-like)?