STCentroid (type de données geometry)
Retourne le centre géométrique d'une instance geometry qui consiste en un ou plusieurs polygones.
Syntaxe
.STCentroid ( )
Types de retour
SQL Server type de retour : geometry
Type de retour CLR : SqlGeometry
Type Open Geospatial Consortium (OGC) : Point
Notes
STCentroid() retourne Null si l'instance geometry n'est pas un type Polygon, CurvePolygon ou MultiPolygon
Exemples
A.Calcul du centroïde d'une instance Polygon
L'exemple suivant utilise STCentroid() pour calculer le centroïde d'une instance polygon geometry :
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();
B.Calcul du centroïde d'une instance CurvePolygon
L'exemple suivant calcule le centroïde d'une instance CurvePolygon :
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