ST_Summary — 도형의 내용을 요약한 텍스트를 반환합니다.
text ST_Summary(
geometry g)
;
text ST_Summary(
geography g)
;
도형의 내용을 요약한 텍스트를 반환합니다.
도형 유형 뒤에 대괄호로 표기된 플래그는 다음과 같은 뜻입니다:
M: M 좌표가 존재합니다.
Z: Z 좌표가 존재합니다.
B: 캐쉬된 경계 상자를 가지고 있습니다.
G: 측지형(지리형)입니다.
S: 공간 참조 시스템을 가지고 있습니다.
This method supports Circular Strings and Curves.
This function supports Polyhedral surfaces.
This function supports Triangles and Triangulated Irregular Network Surfaces (TIN).
1.2.2 버전부터 사용할 수 있습니다.
개선 사항: 2.0.0 버전부터 지리형을 지원하기 시작했습니다.
개선 사항: 2.1.0 버전. 알려진 공간 참조 시스템을 가진 경우를 나타내는 S 플래그가 추가됐습니다.
개선 사항: 2.2.0 버전부터 TIN 및 만곡 도형(curve)을 지원하기 시작했습니다.
=# SELECT ST_Summary(ST_GeomFromText('LINESTRING(0 0, 1 1)')) as geom, ST_Summary(ST_GeogFromText('POLYGON((0 0, 1 1, 1 2, 1 1, 0 0))')) geog; geom | geog -----------------------------+-------------------------- LineString[B] with 2 points | Polygon[BGS] with 1 rings | ring 0 has 5 points : (1 row) =# SELECT ST_Summary(ST_GeogFromText('LINESTRING(0 0 1, 1 1 1)')) As geog_line, ST_Summary(ST_GeomFromText('SRID=4326;POLYGON((0 0 1, 1 1 2, 1 2 3, 1 1 1, 0 0 1))')) As geom_poly; ; geog_line | geom_poly -------------------------------- +-------------------------- LineString[ZBGS] with 2 points | Polygon[ZBS] with 1 rings : ring 0 has 5 points : (1 row)