ST_Area

Définition

ST_Area retourne la surface d'un objet polygon ou multipolygon.

Syntaxe

sde.st_area (pl1 sde.st_geometry)
sde.st_area (mpl1 sde.st_geometry)

Type de retour

Double précision

Exemple

L'ingénieur municipal a besoin d'une liste des zones à bâtir. Pour créer cette liste, un technicien SIG sélectionne l'identifiant de bâtiment et la surface de chaque emprise de bâtiment.

Les emprises de bâtiments sont stockées dans la table bfp créée à l'aide de l'instruction CREATE TABLE suivante :

Oracle

CREATE TABLE bfp (
building_id integer,
footprint sde.st_geometry);

INSERT INTO BFP VALUES (
1, 
sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0)
);

INSERT INTO BFP VALUES (
2, 
sde.st_polygon ('polygon ((20 0, 30 20, 40 0, 20 0))', 0)
);

INSERT INTO BFP VALUES (
3,
sde.st_polygon ('polygon ((20 30, 25 35, 30 30, 20 30))', 0)
);

PostgreSQL

CREATE TABLE bfp (
building_id integer unique,
footprint sde.st_geometry);

INSERT INTO bfp VALUES (
1, 
sde.st_polygon ('polygon ((0 0, 0 10, 10 10, 10 0, 0 0))', 0)
);

INSERT INTO bfp VALUES (
2, 
sde.st_polygon ('polygon ((20 0, 30 20, 40 0, 20 0))', 0)
);

INSERT INTO bfp VALUES (
3,
sde.st_polygon ('polygon ((20 30, 25 35, 30 30, 20 30))', 0)
);

Pour répondre à la demande de l'ingénieur municipal, le technicien sélectionne la clé unique, l'identifiant building_id et la surface de chaque emprise de bâtiment de la table bfp.

Oracle

SELECT building_id, sde.st_area (footprint) Area
FROM BFP;

BUILDING_ID       Area

          1        100
          2        200
          3         25

PostgreSQL

SELECT building_id, sde.st_area (footprint) 
AS Area
FROM bfp;

building_id       area

          1        100
          2        200
          3         25

2/28/2012