Open-EO / openeo-processes-python

A Python representation of (most) openEO processes
Apache License 2.0
11 stars 4 forks source link

Logical Operators need some TLC? #196

Open danielFlemstrom opened 2 years ago

danielFlemstrom commented 2 years ago

AND: exec_num uses logical and which is correct but exec_np uses bitwise and (& operator), should it be np.logical_and(x,y) like the exec_xar implementation ? Why does it differ from exec_xar ?

OR Same question here....