답변:
ST_ClusterIntersecting으로 이를 수행 할 수 있습니다 .
SELECT attr, unnest(ST_ClusterIntersecting(geom))
FROM lines
GROUP by attr;
ST_ClusterIntersecting()
은 PostGIS 2.2에서 사용할 수 있습니다. 이전 버전의 솔루션이 있습니까? PostGIS 2.1.8을 사용 중이며 현재 PostGIS를 업그레이드 할 수 없습니다.
ST_ClusterIntersecting
. 2.2 이전의 일부 아이디어는 gis.stackexchange.com/q/94203/18189에 있습니다