SqlSpatialFunctions.BufferWithTolerance 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
回傳一個幾何物件,代表所有距離某個實例距離不等於指定值的點值的聯集,允許指定的容差。
多載
| 名稱 | Description |
|---|---|
| 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
地理價值。
傳回
將所有距離地理實例大小於或等於指定值的點值的聯集。
- 屬性
適用於
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
幾何數值。
傳回
將所有距離某幾何實例大小於指定值的點值合併。
- 屬性