RasterMergeOperator Class
An operator that merges raster features.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public class RasterMergeOperator : UnaryOperator
Remarks
A RasterMergeOperator reads raster features from its input and combines them into a single output raster, which always covers the whole view area. It only handles raster features; if any other type of feature is read, an exception is thrown.
Rasters can be merged in several different ways, controlled by the Operation property. The most common use is to simply fill undefined areas of the output raster with data from the input rasters. This can be used when you have high resolution data for some areas, and want to fill out other areas with some other low resolution data. It as also possible to add overlapping cell values from several rasters, and to calculate min and max values.
![]() |
The Resolution, CellWidth and CellHeight properties can be used to control the resolution of the output raster; if an input raster has a different resolution, it will be resampled automatically.
If the merge operation is Fill, all input rasters must also have the same raster format. Use a RasterConversionOperator to convert all inputs to the same format. The output raster will have the same format.
For all other operations, all input rasters must be integer or float rasters (not RGB/RGBA), with arbitrary bit depths. If any float raster is read, the output will also be a float raster; otherwise the output will be a 32-bit integer raster.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Operator
UnaryOperator
RasterMergeOperator
Platforms
Windows, Linux, Android
RasterMergeOperator Members
The RasterMergeOperator type has the following members.
Constructors
Name | Description |
---|---|
RasterMergeOperator | Initializes a new instance of the RasterMergeOperator class. |
Properties
Name | Description |
---|---|
CellHeight | Gets or sets a value used to calculate the cell height of the output raster. |
CellWidth | Gets or sets a value used to calculate the cell width of the output raster. |
Description | Gets or sets a short description of the operator. Inherited from Operator |
DisplayName | Gets or sets a display name for the operator. Inherited from Operator |
Input | Gets or sets the input operator, from which this operator reads features. Inherited from UnaryOperator |
IsDisposed | Gets a value that tells whether the current RasterMergeOperator has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the operator. Inherited from Operator |
Name | Gets or sets the name of the operator. Inherited from Operator |
NativeHandle | Gets the native Carmenta Engine kernel object the current RasterMergeOperator represents. Inherited from EngineObject |
Operation | Gets or sets a value specifying how rasters will be merged. |
Resolution | Gets or sets a value specifying how the resolution of the output raster is selected. |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
FindChildObject | Overloaded. Finds the child object with the specified name. Inherited from Operator |
FlushCache | Marks the layer as flushed which will release cached resources during the next update. Inherited from Operator |
GetChildObjects | Overloaded. Gets the child objects of the current object. Inherited from Operator |
GetFeatures | Overloaded. Gets features from the operator chain. Inherited from Operator |
GetLocalizedDescription | Gets a localized version of the operator description in a specific language. Inherited from Operator |
GetLocalizedDisplayName | Gets a localized version of the operator display name in a specific language. Inherited from Operator |
GetLocalizedIsoMetadataDocument | Gets the path to an ISO 19139 metadata document for a specific language. Inherited from Operator |
GetRasterFeature | Overloaded. Gets raster features from the operator chain and merges them into a single raster. Inherited from Operator |
HasLocalizedDescription | Checks if a localized version of the operator description is available in a specific language. Inherited from Operator |
HasLocalizedDisplayName | Checks if a localized version of the operator display name is available in a specific language. Inherited from Operator |
HasLocalizedIsoMetadataDocument | Checks if an ISO 19139 metadata document is available for a specific language. Inherited from Operator |
SetLocalizedDescription | Sets a operator description in a specific language. Inherited from Operator |
SetLocalizedDisplayName | Sets a operator display name in a specific language. Inherited from Operator |
SetLocalizedIsoMetadataDocument | Sets the path to an ISO 19139 metadata document for the operator, for a specific language. Inherited from Operator |