| title | STCentroid (geometry Data Type) | ||
|---|---|---|---|
| description | STCentroid (geometry Data Type) | ||
| author | MladjoA | ||
| ms.author | mlandzic | ||
| ms.date | 08/03/2017 | ||
| ms.service | sql | ||
| ms.subservice | t-sql | ||
| ms.topic | reference | ||
| ms.custom |
|
||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
||
| monikerRange | =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb |
[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance FabricSQLDB]
Returns the geometric center of a geometry instance that consists of one or more polygons.
.STCentroid ( )
[!INCLUDEssNoVersion] return type: geometry
CLR return type: SqlGeometry
Open Geospatial Consortium (OGC) type: Point
STCentroid() returns null if the geometry instance is not a Polygon, CurvePolygon, or MultiPolygon type.
The following example uses STCentroid() to compute the centroid of a polygon``geometry instance:
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 3 0, 3 3, 0 3, 0 0),(2 2, 2 1, 1 1, 1 2, 2 2))', 0);
SELECT @g.STCentroid().ToString();
The following example computes the centroid for a CurvePolygon instance:
DECLARE @g geometry = 'CURVEPOLYGON(CIRCULARSTRING(0 4, 4 0, 8 4, 4 8, 0 4), CIRCULARSTRING(2 4, 4 2, 6 4, 4 6, 2 4))';
SELECT @g.STCentroid().ToString() AS Centroid