The mosaic operation is used to define how overlapping cells from various rasters in a mosaic dataset will be resolved in the mosaicked image. The MosaicOperation can be one of:
Constant | Description |
---|---|
Enums. | (0) First. The overlapping areas will contain the cells from the first raster dataset listed in the mosaic dataset. |
Enums. | (1) Last. The overlapping areas will contain the cells from the last raster dataset listed in the mosaic dataset. |
Enums. | (2) Min. The overlapping areas will contain the minimum cell values from all the overlapping cells. |
Enums. | (3) Max. The overlapping areas will contain the maximum cell values from all the overlapping cells. |
Enums. | (4) Mean. The overlapping areas will contain the mean cell values from all the overlapping cells. |
Enums. | (5) Blend. 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. |
Enums. | (6) Sum. |