STCentroid (type de données geometry)
S’applique à : SQL Server Azure SQL Database Azure SQL Managed Instance
Retourne le centre géométrique d’une instance geometry qui comprend un ou plusieurs polygones.
Syntaxe
.STCentroid ( )
Types de retour
Type de retour SQL Server : geometry
Type de retour CLR : SqlGeometry
Type OGC (Open Geospatial Consortium) : Point
Remarques
STCentroid()
retourne une valeur Null si l’instance geometry n’est pas de type Polygon, CurvePolygon ou MultiPolygon.
Exemples
R. 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