MosaicOperation enum

The mosaic operator is used to define how overlapping cells from various rasters in a mosaic dataset will be resolved in the mosaicked image.

Inheritance
Available extensions

Values

first → const MosaicOperation

The overlapping areas will contain the cells from the first raster dataset listed in the mosaic dataset.

last → const MosaicOperation

The overlapping areas will contain the cells from the last raster dataset listed in the mosaic dataset.

min → const MosaicOperation

The overlapping areas will contain the minimum cell values from all the overlapping cells.

max → const MosaicOperation

The overlapping areas will contain the maximum cell values from all the overlapping cells.

mean → const MosaicOperation

The overlapping areas will contain the mean cell values from all the overlapping cells.

blend → const MosaicOperation

The overlapping areas will be a blend of the cell values that overlap; this blend value relies on an algorithm that is weight based and dependent on the distance from the cells to the edge within the overlapping area.

You will want to set Blend when using the MosaicMethod.seamline.

sum → const MosaicOperation

The overlapping areas will contain the total sum of the cell values from all the overlapping cells.

Properties

coreValue → RT_MosaicOperation
no setter
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<MosaicOperation>
A constant List of the values in this enum, in order of their declaration.