BorderMergeOperator Class
Merges adjacent polygon borders into line segments.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEOperators assembly)
Syntax
public class BorderMergeOperator : BorderMatchOperator
Remarks
If two polygons features are adjacent, their shared border is represented twice, and will be visualized twice. This duplicity causes problems:
The shared border may be represented slightly differently by the two polygons, so that narrow overlaps or gaps appear along the border. If it would be enough to adjust the polygons to agree about shared borders, then you can use a BorderSnapOperator instead.
Even if the shared border is represented exactly the same by the two polygons, it will be impossible to visualize the polygons with for a dashed line, since the dashes around adjacent polygons cannot be synchronized. Along the shared border, the dashes of one polygon may cover the gaps of the other polygon, making the border look like a solid line. Similar problems occur with other line styles, and with solid lines that should be semi-transparent.
Although labels with polygon attributes can be placed along the borders, it is impossible to synchronize the labels of adjacent polygons. For example, along the French-German border you can write "France" on the west side and "Germany" on the east side, but you cannot make the two labels appear opposite each other, as is often desirable.
BorderMergeOperator is designed to solve these problems. The input to BorderMergeOperator is a set of polygon features, and the output is a set of line features that represent the borders of the polygons. Each piece of border is represented by a single line, even if the border is shared between two or more polygons. A slight mismatch between adjacent polygons can be tolerated, and the shared border can get attributes from the input polygons.
![]() |
In the example above, the right picture shows the input to a BorderMergeOperator; since Eire has lower resolution than Northern Ireland, their borders do not fit. The left picture shows the output, where the two versions of the common border have been merged to a single line (red) with two name attributes, while the coast lines (green and purple) have one name attribute each.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
Operator
UnaryOperator
BorderMatchOperator
BorderMergeOperator
Platforms
Windows, Linux, Android
BorderMergeOperator Members
The BorderMergeOperator type has the following members.
Constructors
Name | Description |
---|---|
BorderMergeOperator | Initializes a new instance of the BorderMergeOperator class. |
Properties
Name | Description |
---|---|
AttributePrefix | Gets or sets a prefix that will be used when naming the attributes of the output lines. |
Attributes | Gets a list of attributes, whose values must be copied from input polygons to output lines. |
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 BorderMergeOperator has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the operator. Inherited from Operator |
MaxDisplacement | Gets or sets the maximum distance (in meters) that the border of a polygon may be displaced to fit another polygon. Inherited from BorderMatchOperator |
MaxRotation | Gets or sets the largest angle that a polygon edge may be rotated to match the edge of another polygon. Inherited from BorderMatchOperator |
Name | Gets or sets the name of the operator. Inherited from Operator |
NativeHandle | Gets the native Carmenta Engine kernel object the current BorderMergeOperator represents. Inherited from EngineObject |
OutputPolygons | Gets or sets a flag indicating if the original polygons are also sent through to the next operator. |
ShortestGapFactor | Gets or sets a factor that, when multiplied with MaxDisplacement, gives the minimal gap between two pieces of border that are shared by the same two polygons. Inherited from BorderMatchOperator |
ShortestMatchFactor | Gets or sets a factor that, when multiplied with MaxDisplacement, gives the minimal length of a border that will be regarded as shared with another polygon. Inherited from BorderMatchOperator |
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 |