SqlGeography.Reduce Method (Double)

 

Applies To: SQL Server 2016 Preview

Returns an approximation of the given geography instance produced by running the Douglas-Peucker algorithm on the instance with the given tolerance.

Namespace:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)

Syntax

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlGeography Reduce(
    double tolerance
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
SqlGeography^ Reduce(
    double tolerance
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member Reduce : 
        tolerance:float -> SqlGeography
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Function Reduce (
    tolerance As Double
) As SqlGeography

Parameters

  • tolerance
    Type: System.Double

    Is a double that represents the tolerance to input to the Douglas-Peucker algorithm. tolerance must be a positive number.

Return Value

Type: Microsoft.SqlServer.Types.SqlGeography

A SqlGeography value representing an approximation of the current instance.

Remarks

For collection types, this algorithm operates independently on each SqlGeography contained in the instance. This algorithm does not modify Point instances.

This method will attempt to preserve the endpoints of LineString instances, but may fail to do so in order to preserve a valid result.

If Reduce is called with a negative value, this method will produce an ArgumentException. Tolerances used in Reduce must be positive numbers.

The Douglas-Peucker algorithm works on each curve or ring in the geography instance by removing all points except for the start point and end point. Each point removed is then added back, starting with the farthest outlying point, until no point is more than tolerance from the result. The result is then made valid if necessary, as a valid result is guaranteed.

This method is deterministic but not precise.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top