SqlSpatialFunctions.BufferWithTolerance 方法

定义

返回一个几何对象,该对象表示与实例之间的距离小于或等于指定值的所有点值的并集,从而允许指定的容差。

重载

名称 说明
BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

返回一个几何对象,该对象表示与地理实例距离小于或等于指定值的所有点值的并集,从而允许指定的容差。

BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

返回一个几何对象,该对象表示与几何图形实例的距离小于或等于指定值的所有点值的并集,从而允许指定容差。

BufferWithTolerance(DbGeography, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

返回一个几何对象,该对象表示与地理实例距离小于或等于指定值的所有点值的并集,从而允许指定的容差。

public:
 static System::Data::Spatial::DbGeography ^ BufferWithTolerance(System::Data::Spatial::DbGeography ^ geographyValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")]
public static System.Data.Spatial.DbGeography BufferWithTolerance(System.Data.Spatial.DbGeography geographyValue, double? distance, double? tolerance, bool? relative);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")>]
static member BufferWithTolerance : System.Data.Spatial.DbGeography * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Spatial.DbGeography
Public Shared Function BufferWithTolerance (geographyValue As DbGeography, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeography

参数

geographyValue
DbGeography

地理值。

distance
Nullable<Double>

距离。

tolerance
Nullable<Double>

指定的容差。

relative
Nullable<Boolean>

指定容差值是相对的还是绝对的。

返回

与地理实例的距离小于或等于指定值的所有点值的联合。

属性

适用于

BufferWithTolerance(DbGeometry, Nullable<Double>, Nullable<Double>, Nullable<Boolean>)

返回一个几何对象,该对象表示与几何图形实例的距离小于或等于指定值的所有点值的并集,从而允许指定容差。

public:
 static System::Data::Spatial::DbGeometry ^ BufferWithTolerance(System::Data::Spatial::DbGeometry ^ geometryValue, Nullable<double> distance, Nullable<double> tolerance, Nullable<bool> relative);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")]
public static System.Data.Spatial.DbGeometry BufferWithTolerance(System.Data.Spatial.DbGeometry geometryValue, double? distance, double? tolerance, bool? relative);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "BUFFERWITHTOLERANCE")>]
static member BufferWithTolerance : System.Data.Spatial.DbGeometry * Nullable<double> * Nullable<double> * Nullable<bool> -> System.Data.Spatial.DbGeometry
Public Shared Function BufferWithTolerance (geometryValue As DbGeometry, distance As Nullable(Of Double), tolerance As Nullable(Of Double), relative As Nullable(Of Boolean)) As DbGeometry

参数

geometryValue
DbGeometry

几何图形值。

distance
Nullable<Double>

距离。

tolerance
Nullable<Double>

指定的容差。

relative
Nullable<Boolean>

指定容差值是相对的还是绝对的。

返回

与几何图形实例的距离小于或等于指定值的所有点值的并集。

属性

适用于