Is there an easy way to create a LineString out of a column of Points in SQL?
For example I have a query:
SELECT Geom FROM api.Table WHERE WellId = 'XYZ1234' ORDER BY MeasuredDepth ASC;
that returns 186 points as wkb:
Geom
0xE6100000010CDEB06D5166275AC024B4E55C8A114440
0xE6100000010CE5F21FD26F275AC061FD9FC37C114440
0xE6100000010C4512BD8C62275AC0FCA5457D92114440
0xE6100000010CF33CB83B6B275AC063450DA661144440
0xE6100000010CA56B26DF6C275AC01E32E54350134440
0xE6100000010CBDFBE3BD6A275AC0C1CAA145B6134440
0xE6100000010CB6D617096D275AC03A92CB7F48134440
0xE6100000010CFD82DDB06D275AC04C4F58E201134440
0xE6100000010C9A081B9E5E275AC0041C42959A114440
...
I can also save these wkb in a temporary table and return them as text:
POINT (-104.61562 40.137035)
POINT (-104.6162 40.13662)
POINT (-104.61539 40.137283)
POINT (-104.61592 40.15923)
POINT (-104.61602 40.150887)
POINT (-104.61589 40.154)
POINT (-104.61603 40.15065)
POINT (-104.61607 40.148495)
POINT (-104.61515 40.13753)
POINT (-104.61605 40.15017)
...
But from the MSSQL documentation I can't find any way to make a LineString out of all of these points. Is this possible, i.e. something like PostGIS ST_MakeLine?
You can concatenate the X and Y properties of your Geom column into a string variable, then use the LINESTRING with all the points contained in that variable.
declare @string varchar(max)
Select @string = isnull(@string + ',', '') + cast(Geom.STX as varchar(20)) + ' ' + cast(Geom.STY as varchar(20))
from api.Table
Set @string = 'LINESTRING(' + @string + ')';
Select geometry::STLineFromText(@string, 4326);
Adding a 2nd answer for the ordering issue, you could iterate trough a table with an identity column.
In the following example, I'm creating a table variable with Id identity, inserting the records into that table, and then iterating and populating the string.
declare @points table (Id int identity, Geom geometry)
Insert into @points (Geom)
SELECT Geom
FROM api.Table
WHERE WellId = 'XYZ1234'
ORDER BY MeasuredDepth ASC;
declare @iterRow int,
@rowCount int,
@string varchar(max),
@x varchar(20),
@y varchar(20)
Select @iterRow = 1,
@rowCount = count(1)
from @points
While (@iterRow <= @rowCount)
Begin
Select @x = cast(Geom.STX as varchar(20)),
@y = cast(Geom.STY as varchar(20))
From @points
where Id = @iterRow
Set @string = isnull(@string + ',', '') + @x + ' ' + @y
Set @iterRow += 1
End
Set @string = 'LINESTRING(' + @string + ')';
Select geometry::STLineFromText(@string, 0);