Hi
I have a simple programmable script with a condition where i use np.where.
The velocity for example should be smaller than 1 otherwise it should be nan.
VEL = np.where((VEL >= 0) & (VEL <= 1.0), VEL, np.nan))
When i check the results, it seems like the condition isn’t applied correctly since velocity values smaller than 1 got nan values, see picture.
i’m confused because i ordered a similar script from you and it also uses the np.where. so i’m a little worried that the other one will also produce wrong results.