12.15.7.6 MultiPolygon 프로퍼티 함수
이 함수는 MultiPolygon
값 특성을 반환합니다.
Area(
mpoly
)섹션 12.15.7.5 "Polygon 프로퍼티 함수" 에있는
Area()
의 설명을 참조하십시오.Centroid(
mpoly
)ST_Centroid()
와Centroid()
는 동의어입니다. 자세한 내용은ST_Centroid()
의 설명을 참조하십시오.ST_Area(
mpoly
)섹션 12.15.7.5 "Polygon 프로퍼티 함수" 에있는
Area()
의 설명을 참조하십시오.ST_Centroid(
mpoly
)MultiPolygon
값mpoly
수학 중심을Point
로서 돌려줍니다. 결과가MultiPolygon
에있는 보장은 없습니다.mysql>
SET @poly =
->GeomFromText('POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))');
mysql>SELECT GeometryType(@poly),AsText(ST_Centroid(@poly));
+---------------------+--------------------------------------------+ | GeometryType(@poly) | AsText(ST_Centroid(@poly)) | +---------------------+--------------------------------------------+ | POLYGON | POINT(4.958333333333333 4.958333333333333) | +---------------------+--------------------------------------------+ST_Centroid()
와Centroid()
는 동의어입니다.ST_Centroid()
는 MySQL 5.6.1에서 추가되었습니다.