logicalOr method

BooleanFieldFunction logicalOr(
  1. BooleanFieldFunction otherField
)

Composes a function that indicates if, point-wise, either this function's field result or another are true.

The function result has no data where both of the given fields have no data or where one of the given fields has no data and the other is false.

The function result is true where one of the given fields has no data and the other is true.

The function result extent is the union of the extents of the given fields.

The spatial reference of both fields must be equivalent.

Parameters:

  • otherField — Another boolean field function.

Return Value: A function that indicates if either this function's field result or another are true.