次の方法で共有


STIntersection (geography データ型)

geography インスタンスが別の geography インスタンスと交差する地点を表すオブジェクトを返します。

構文

.STIntersection ( other_geography )

引数

  • other_geography
    交差する地点を特定するために、STIntersection() を呼び出したインスタンスと比較される、別の geography インスタンスです。

戻り値の型

SQL Server の戻り値の型 : geography

CLR の戻り値の型 : SqlGeography

説明

2 つの geography インスタンスの SRID (spatial reference ID) が一致しない場合、STIntersection() は常に NULL を返します。

STIntersection() を使用して、Polygon と LineString が交差する地点を計算する例を次に示します。

DECLARE @g geography;
DECLARE @h geography;
SET @g = geography::STGeomFromText('POLYGON((-122.358 47.653, -122.348 47.649, -122.348 47.658, -122.358 47.658, -122.358 47.653))', 4326);
SET @h = geography::STGeomFromText('LINESTRING(-122.360 47.656, -122.343 47.656)', 4326);
SELECT @g.STIntersection(@h).ToString();

関連項目

その他の技術情報