ee.Array.or

On an element-wise basis, returns 1 if and only if either input value is non-zero.

UsageReturns
Array.or(right)Array
ArgumentTypeDetails
this: leftArrayThe left-hand value.
rightArrayThe right-hand value.

Examples

Code Editor (JavaScript)

var empty = ee.Array([], ee.PixelType.int8());
print(empty.or(empty));  // []

print(ee.Array([0, 0, 1, 1]).or(ee.Array([0, 1, 0, 1])));  // [0,1,1,1]

Python setup

See the Python Environment page for information on the Python API and using geemap for interactive development.

import ee
import geemap.core as geemap

Colab (Python)

empty = ee.Array([], ee.PixelType.int8())
display(empty.Or(empty))  # []

# [0, 1, 1, 1]
display(ee.Array([0, 0, 1, 1]).Or(ee.Array([0, 1, 0, 1])))