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
Allow to create a mask by comparing elements between two data cubes having the same dimensions:
cube["B01"] .> cube["B02"]
A simple merge_cube with overlap_resolver of process greater than (gt) does not work, because it is not supported e.g. by the backend https://openeocloud.vito.be/openeo/1.0.0
The python client adds the gt comparison to the process graph of reduce_dimension, circumventing merge_cube, because both bands originate from the same collection.
In addition, how to combine multiple conditionals e.g.
@. cube["B01"] > 1 && cube["B02"] > 2
Need to implement &&, ||, xor, nor
The text was updated successfully, but these errors were encountered:
Allow to create a mask by comparing elements between two data cubes having the same dimensions:
A simple
merge_cube
withoverlap_resolver
of process greater than (gt
) does not work, because it is not supported e.g. by the backend https://openeocloud.vito.be/openeo/1.0.0The python client adds the
gt
comparison to the process graph ofreduce_dimension
, circumventingmerge_cube
, because both bands originate from the same collection.In addition, how to combine multiple conditionals e.g.
Need to implement &&, ||, xor, nor
The text was updated successfully, but these errors were encountered: