Raster on which to run the focal operation.
Neighborhood to use for this operation (e.g., Square(1))
Create a new operation with a function that takes the result of this operation and returns a new operation.
Create a new operation with a function that takes the result of this operation and returns a new operation.
Create an operation that applies the function f to the result of this operation, but returns nothing.
Create an operation that applies the function f to the result of this operation, but returns nothing.
Gets a calculation to be used with this focal operation for the given raster neighborhood.
Gets a calculation to be used with this focal operation for the given raster neighborhood.
Choosing the calculation based on on the raster and neighborhood allows flexibility in what calculation to use; if some calculations are faster for some neighborhoods (e.g., using a CellwiseCalculation for Square neighborhoods and a CursorCalculation for all other neighborhoods), or if you want to change the calculation based on the raster's data type, you can do so by returning the correct FocalCalculation from this function.
Raster that the focal calculation will run against.
Neighborhood that will be used in the focal operation.
Create a new operation that returns the result of the provided function that takes this operation's result as its argument.
Create a new operation that returns the result of the provided function that takes this operation's result as its argument.
Neighborhood to use for this operation (e.
Neighborhood to use for this operation (e.g., Square(1))
Return operation identified (class simple name).
Return operation identified (class simple name).
Raster on which to run the focal operation.
Execute this operation and return the result.
Execute this operation and return the result.
Create a new operation with a function that takes the result of this operation and returns a new operation.
Create a new operation with a function that takes the result of this operation and returns a new operation.
Same as flatMap.
(mean: Operation[Mean]).canEqual(that)
(mean: Operation[Mean]).debug
(mean: Operation[Mean]).dispatch(dispatcher)
(mean: Operation[Mean]).filter(f)
Create a new operation with a function that takes the result of this operation and returns a new operation.
Create a new operation with a function that takes the result of this operation and returns a new operation.
(mean: Operation[Mean]).flatMap(f)
Create an operation that applies the function f to the result of this operation, but returns nothing.
Create an operation that applies the function f to the result of this operation, but returns nothing.
(mean: Operation[Mean]).foreach(f)
Create a new operation that returns the result of the provided function that takes this operation's result as its argument.
Create a new operation that returns the result of the provided function that takes this operation's result as its argument.
(mean: Operation[Mean]).map(f)
Return operation identified (class simple name).
Return operation identified (class simple name).
(mean: Operation[Mean]).name
(mean: Operation[Mean]).nextSteps
(mean: Operation[Mean]).processNextSteps(args)
(mean: Operation[Mean]).productArity
(mean: Operation[Mean]).productElement(n)
Execute this operation and return the result.
Execute this operation and return the result.
(mean: Operation[Mean]).run(context)
(mean: Operation[Mean]).runAsync(args)
(mean: StringAdd).self
(mean: StringFormat).self
Create a new operation with a function that takes the result of this operation and returns a new operation.
Create a new operation with a function that takes the result of this operation and returns a new operation.
Same as flatMap.
(mean: Operation[Mean]).withResult(f)
(mean: ArrowAssoc[Mean]).x
(Since version 2.10.0) Use leftOfArrow
instead
(mean: Ensuring[Mean]).x
(Since version 2.10.0) Use resultOfEnsuring
instead
Computes the mean value of a neighborhood for a given raster
Raster on which to run the focal operation.
Neighborhood to use for this operation (e.g., Square(1))
If the neighborhood is a Square neighborhood, the mean calucation will use the CellwiseMeanCalc to perform the calculation, because it is faster. If the neighborhood is of any other type, then CursorMeanCalc is used.