STArea (tipo de dados geometry)
Retorna uma área de superfície total de uma instância de geometry.
Sintaxe
.STArea ( )
Tipos de retorno
SQL Server tipo de retorno: float
Tipo de retorno CLR: SqlDouble
Comentários
STArea() retornará 0 se uma instância geometry contiver apenas valores dimensionais 0 - e 1- ou se estiver vazio. STArea() retornará NULL se a instância de geometry não tiver sido utilizada.
Exemplos
A.Computando a área de uma instância de Polígono
O exemplo a seguir cria uma instância de Polygon geometry e calcula a área do polígono.
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.STArea();
B.Computando a área de uma instância de CurvePolygon
O exemplo a seguir calcula a área de uma instância de CurvePolygon.
DECLARE @g geometry;
SET @g = geometry::Parse('CURVEPOLYGON(CIRCULARSTRING(0 2, 2 0, 4 2, 4 2, 0 2))');
SELECT @g.STArea() AS Area;