Name

ST_ApproximateMedialAxis — 면 도형의 근사 중심축을 계산합니다.

Synopsis

geometry ST_ApproximateMedialAxis(geometry geom);

설명

입력 면 도형의 직선 골격을 바탕으로 근사 중심축(approximate medial axis)을 반환합니다. 사용 가능한 버전(1.2.0 이상)에 대해 빌드했을 때 SFCGAL에 특화된 API를 이용합니다. 그렇지 않을 경우 이 함수는 (더 느린) ST_StraightSkeleton 함수를 둘러싼 래퍼(wrapper)에 불과합니다.

2.2.0 버전부터 사용할 수 있습니다.

This method needs SFCGAL backend.

This function supports 3d and will not drop the z-index.

This function supports Polyhedral surfaces.

This function supports Triangles and Triangulated Irregular Network Surfaces (TIN).

예시

SELECT ST_ApproximateMedialAxis(ST_GeomFromText('POLYGON (( 190 190, 10 190, 10 10, 190 10, 190 20, 160 30, 60 30, 60 130, 190 140, 190 190 ))'));

폴리곤과 그 근사 중심축

참고

ST_StraightSkeleton