SqlGeography.Reduce 메서드

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

네임스페이스:  Microsoft.SqlServer.Types
어셈블리:  Microsoft.SqlServer.Types(Microsoft.SqlServer.Types.dll)

구문

‘선언
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Function Reduce ( _
    tolerance As Double _
) As SqlGeography
‘사용 방법
Dim instance As SqlGeography 
Dim tolerance As Double 
Dim returnValue As SqlGeography 

returnValue = instance.Reduce(tolerance)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlGeography Reduce(
    double tolerance
)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public:
SqlGeography^ Reduce(
    double tolerance
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member Reduce : 
        tolerance:float -> SqlGeography
public function Reduce(
    tolerance : double
) : SqlGeography

매개 변수

  • tolerance
    유형: System.Double
    Is a double that represents the tolerance to input to the Douglas-Peucker algorithm. tolerance must be a positive number.

반환 값

유형: Microsoft.SqlServer.Types.SqlGeography
A SqlGeography value representing an approximation of the current instance.

주의

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.

참고 항목

참조

SqlGeography 클래스

Microsoft.SqlServer.Types 네임스페이스