从T-SQL中同一表中的许多要素的点创建地理折线

时间:2018-01-12 19:18:42

标签: sql-server tsql geospatial sqlgeography sqlgeometry

这里也提出了类似的问题:

Create geography polyline from points in T-SQL

我有一个如下所示的表架构:

CREATE TABLE [dbo].[LongAndLats](
[Longitude] [float] NULL,
[Latitude] [float] NULL,
[SortOrder] [bigint] NULL,
[SensorID] [bigint] NULL,
)

示例数据如下所示:

enter image description here

如何使用TSQL将这些点转换为每个SensorID 的地理折线(以便我为每个SensorID设置SensorID / Polyline记录)?

0 个答案:

没有答案