名称

ST_ClusterWithinWin — 窗口函数,为每个输入几何返回一个聚类 ID,使用分离距离进行聚类。

语法

integer ST_ClusterWithinWin(geometry winset geom, float8 distance);

描述

一个窗口函数,为每个输入几何返回一个聚类号。聚类将几何分区为集合,其中每个几何都在同一聚类中至少一个其他几何的指定distance内。距离是 SRID 单位中的笛卡尔距离。

ST_ClusterWithinWin 等效于运行 ST_ClusterDBSCAN,其中 minpoints := 0

可用性:3.4.0

此方法支持圆形线和曲线。

示例

WITH testdata AS (
  SELECT id, geom::geometry FROM (
  VALUES  (1, 'LINESTRING (0 0, 1 1)'),
          (2, 'LINESTRING (5 5, 4 4)'),
          (3, 'LINESTRING (6 6, 7 7)'),
          (4, 'LINESTRING (0 0, -1 -1)'),
          (5, 'POLYGON ((0 0, 4 0, 4 4, 0 4, 0 0))')) AS t(id, geom)
)
SELECT id, 
  ST_AsText(geom), 
  ST_ClusterWithinWin(geom, 1.4) OVER () AS cluster 
FROM testdata;


 id |           st_astext            | cluster 
----+--------------------------------+---------
  1 | LINESTRING(0 0,1 1)            |       0
  2 | LINESTRING(5 5,4 4)            |       0
  3 | LINESTRING(6 6,7 7)            |       1
  4 | LINESTRING(0 0,-1 -1)          |       0
  5 | POLYGON((0 0,4 0,4 4,0 4,0 0)) |       0

        

另请参见

ST_ClusterWithinST_ClusterDBSCANST_ClusterIntersectingST_ClusterIntersectingWin