ee.Array.bitwiseOr
On an element-wise basis, calculates the bitwise OR of the input values.
Usage | Returns |
---|
Array.bitwiseOr(right) | Array |
Argument | Type | Details |
---|
this: left | Array | The left-hand value. |
right | Array | The right-hand value. |
Examples
var empty = ee.Array([], ee.PixelType.int8());
print(empty.bitwiseOr(empty)); // []
print(ee.Array(0).bitwiseOr(ee.Array(0))); // 0
print(ee.Array(0).bitwiseOr(ee.Array(1))); // 1
print(ee.Array(1).bitwiseOr(ee.Array(0))); // 1
print(ee.Array(1).bitwiseOr(ee.Array(1))); // 1
print(ee.Array(0xFF).bitwiseOr(ee.Array(0xFFFF))); // 65535
print(ee.Array(0xFFFF).bitwiseOr(ee.Array(0xFF))); // 65535
print(ee.Array(-1).bitwiseOr(ee.Array(0xFF))); // -1
print(ee.Array(-2).bitwiseOr(ee.Array(-3))); // -1
print(ee.Array(-2).bitwiseOr(ee.Array(-4))); // -2
print(ee.Array([6, 6]).bitwiseOr(ee.Array([1, 11]))); // [7,15]
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
empty = ee.Array([], ee.PixelType.int8())
display(empty.bitwiseOr(empty)) # []
display(ee.Array(0).bitwiseOr(ee.Array(0))) # 0
display(ee.Array(0).bitwiseOr(ee.Array(1))) # 1
display(ee.Array(1).bitwiseOr(ee.Array(0))) # 1
display(ee.Array(1).bitwiseOr(ee.Array(1))) # 1
display(ee.Array(0xFF).bitwiseOr(ee.Array(0xFFFF))) # 65535
display(ee.Array(0xFFFF).bitwiseOr(ee.Array(0xFF))) # 65535
display(ee.Array(-1).bitwiseOr(ee.Array(0xFF))) # -1
display(ee.Array(-2).bitwiseOr(ee.Array(-3))) # -1
display(ee.Array(-2).bitwiseOr(ee.Array(-4))) # -2
display(ee.Array([6, 6]).bitwiseOr(ee.Array([1, 11]))) # [7, 15]
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["`Array.bitwiseOr()` calculates the bitwise OR of two input arrays element-by-element."],["It takes two arrays, `left` and `right`, as input and returns a new array with the results."],["The bitwise OR operation is performed on corresponding elements of the input arrays."],["The function works with numeric arrays and supports various data types."],["It handles empty arrays gracefully, returning an empty array if either input is empty."]]],["The `bitwiseOr` method calculates the bitwise OR between two arrays element-wise. The method takes a `right` array as an argument, and the `left` array is the calling object. It returns a new array. The bitwise OR operation is performed on corresponding elements of the `left` and `right` arrays. The provided examples demonstrate this operation with various integer and array inputs, showcasing how the output reflects the bitwise OR of corresponding elements.\n"]]