div

Composes a function that divides, point-wise, this function's field result by another across their spatial intersection. The function result has no data where either of the given fields has no data, or where the divisor is zero.

Result values will be rounded towards zero.

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

The spatial reference of both fields must be equivalent.

Return

A function that divides this function's field result by another.

Since

300.0.0

Parameters

otherField

Another discrete field function.


operator fun div(value: Int): DiscreteFieldFunction

Composes a function that divides, point-wise, this function's field result by a value across its extent. The function result has no data where this function's field result has no data, or if the divisor is zero.

Result values will be rounded towards zero.

The function result extent equals that of this function's field result.

Return

A function that divides this function's field result by a value.

Since

300.0.0

Parameters

value

The value to divide across the field.