BorderMatchOperator.MaxDisplacement Property
Gets or sets the maximum distance (in meters) that the border of a polygon may be displaced to fit another polygon.
Syntax
public AttributeVariable< System.Double > MaxDisplacement { get; set; }
Property Value
Default: 10.0
The maximum distance (in meters) that the border of a polygon may be displaced to fit another polygon.
Remarks
Internally, the operator computes in the coordinate reference system of the first polygon that it reads, and the MaxDisplacement is converted to coordinate reference system units by using only the length unit of the Projection. If the projection is used far from its central region (as Mercator often is), then these nominal meters in the coordinate reference system will differ from true meters.
Using an IndirectAttributeVariable<System.Double>, can be less efficient and is not recommended. The reason is that the operator must extend the requested view area a margin that exceeds all possible values of MaxDisplacement. When MaxDisplacement is indirect, the operator does not know how large it may become, and it will assume that it may be as much as 100000 meters. If this default is larger than was necessary, the operator will be slower; if the default is too small, polygon edges that are clipped by a RectangleClipOperator may interfere with proper edges, and omitting the RectangleClipOperator would also slow down the operator.
Platforms
Windows, Linux, Android