名称

ST_LineMerge — 返回由将 MultiLineString 缝合在一起形成的线。

概要

geometry ST_LineMerge(geometry amultilinestring);

geometry ST_LineMerge(geometry amultilinestring, boolean directed);

描述

返回通过将 MultiLineString 的线元素连接在一起形成的 LineString 或 MultiLineString。 线在 2 路交叉点的端点处连接。 线不会跨越 3 路或更高度交叉点连接。

如果 directed 为 TRUE,则 ST_LineMerge 不会更改 LineString 内的点顺序,因此方向相反的线将不会合并。

[Note]

仅与 MultiLineString/LineString 一起使用。 其他几何类型返回一个空的 GeometryCollection。

由 GEOS 模块执行。

增强:3.3.0 接受一个 directed 参数。

需要 GEOS >= 3.11.0 才能使用 directed 参数。

可用性:1.1.0

[Warning]

此函数会剥离 M 维度。

示例

合并方向不同的线。

SELECT ST_AsText(ST_LineMerge(
'MULTILINESTRING((10 160, 60 120), (120 140, 60 120), (120 140, 180 120))'
		));
--------------------------------------------
 LINESTRING(10 160,60 120,120 140,180 120)

线不会跨越度数 > 2 的交叉点合并。

SELECT ST_AsText(ST_LineMerge(
'MULTILINESTRING((10 160, 60 120), (120 140, 60 120), (120 140, 180 120), (100 180, 120 140))'
		));
--------------------------------------------
 MULTILINESTRING((10 160,60 120,120 140),(100 180,120 140),(120 140,180 120))

如果由于线未接触而无法合并,则返回原始 MultiLineString。

SELECT ST_AsText(ST_LineMerge(
'MULTILINESTRING((-29 -27,-30 -29.7,-36 -31,-45 -33),(-45.2 -33.2,-46 -32))'
));
----------------
MULTILINESTRING((-45.2 -33.2,-46 -32),(-29 -27,-30 -29.7,-36 -31,-45 -33))

如果 directed = TRUE,则方向相反的线不会合并。

SELECT ST_AsText(ST_LineMerge(
'MULTILINESTRING((60 30, 10 70), (120 50, 60 30), (120 50, 180 30))',
TRUE));
-------------------------------------------------------
 MULTILINESTRING((120 50,60 30,10 70),(120 50,180 30))

显示 Z 维度处理的示例。

SELECT ST_AsText(ST_LineMerge(
      'MULTILINESTRING((-29 -27 11,-30 -29.7 10,-36 -31 5,-45 -33 6), (-29 -27 12,-30 -29.7 5), (-45 -33 1,-46 -32 11))'
        ));
--------------------------------------------------------------------------------------------------
LINESTRING Z (-30 -29.7 5,-29 -27 11,-30 -29.7 10,-36 -31 5,-45 -33 1,-46 -32 11)

另请参见

ST_Segmentize, ST_LineSubstring