10

SQL Server を使用して Linestring からポイントを抽出する必要があります。geometry.ToString() で座標を確認できることはわかっていますが、新しいポイント ジオメトリが必要です。どうすればそれができますか?

4

4 に答える 4

17

SQL 2005 以降を使用している場合は、CTE を使用することをお勧めします。

DECLARE @GeometryToConvert GEOMETRY
SET     @GeometryToConvert = 
    GEOMETRY::STGeomFromText('LINESTRING (-71.880713132200128 43.149953199689264, -71.88050339886712 43.149719933022993, -71.880331598867372 43.149278533023676, -71.88013753220099 43.147887799692512, -71.879965998867931 43.147531933026357, -71.879658998868422 43.147003933027179, -71.879539598868575 43.146660333027739, -71.879525332201979 43.145994399695439, -71.87959319886852 43.145452399696296, -71.879660598868384 43.14531113302985, -71.879915932201357 43.145025599696908, -71.879923198868028 43.1449217996971, -71.879885998868076 43.144850733030523, -71.879683932201715 43.144662333030851, -71.879601398868488 43.144565333030982, -71.879316798868956 43.144338333031328, -71.879092332202617 43.144019799698469, -71.8789277322029 43.143902533032019, -71.878747932203169 43.143911533031996, -71.878478132203554 43.14405779969843, -71.878328332203807 43.144066133031743, -71.878148732204068 43.144016599698489, -71.8772655988721 43.143174533033118, -71.876876198872708 43.142725133033821, -71.876801532206173 43.142654933033953, -71.876629398873092 43.142600733034044)', 4269)
;
WITH GeometryPoints(N, Point) AS  
( 
   SELECT 1,  @GeometryToConvert.STPointN(1)
   UNION ALL
   SELECT N + 1, @GeometryToConvert.STPointN(N + 1)
   FROM GeometryPoints GP
   WHERE N < @GeometryToConvert.STNumPoints()  
)

SELECT *, Point.STAsText() FROM GeometryPoints

テキスト結果

テキスト結果

空間結果 - STBuffer(.0001)

空間結果 (バッファリング)

于 2013-09-12T04:17:20.660 に答える
7

LineStringからポイントを抽出する方法の簡単な例を次に示します。

declare @LineString geography,
        @loop       int
declare @Points     table (Point geography)

set @LineString = geography::Parse('LINESTRING(
        -22.8317451477051 -43.4041786193848,-22.8308925628662 -43.4045524597168,-22.8314971923828 -43.404727935791, 
        -22.833927154541  -43.4069404602051,-22.8267574310303 -43.4071388244629)')

set @loop = @LineString.STNumPoints()

while @loop > 0
    begin
    insert into @Points values(@LineString.STPointN(@loop))
    set @loop = @loop -1
    end

select Point.Lat as Lat, Point.Long as Long from @Points

そして、あきらめないでください。T-SQLの空間データは少し注意が必要ですが、機能します。

于 2012-07-19T21:20:25.920 に答える
1

ジオメトリデータ型についてはほとんど何も知りませんが、ドキュメントには、を使用してオブジェクト内のポイントの数を取得し、を使用してSTNumPoints個々のポイントを取得すると記載されていますSTPointN

于 2012-05-26T20:28:45.677 に答える