defined¶
Result = defined(expression)
- expression
spatial, non spatial boolean, nominal, ordinal, scalar, directional, ldd
- Result
dimension of expression boolean
Operation¶
For each cell on Result returns a Boolean value where 1 is TRUE and 0 is FALSE: if the cell value on expression is not a missing value a 1 (TRUE) is assigned to the corresponding cell on Result, if the cell value on expression is a missing value a 0 (FALSE) is assigned to the corresponding cell on Result.
Notes¶
Group¶
This operation belongs to the group of Missing value creation
Examples¶
- • pcrcalcbindingResult = Result.map;Expr = Expr.map;initialreport Result = defined(Expr);• pythonExpr = readmap(“Expr.map”)Result = defined(Expr)
Result.map
Expr.map