ST_IsEmpty
Définition
ST_IsEmpty renvoie 1 (Oracle) ou t (PostgreSQL) si l'objet ST_Geometry est vide. Dans le cas contraire, il renvoie 0 (Oracle) ou f (PostgreSQL).
Syntaxe
sde.st_isempty (g1 sde.st_geometry)
Type de retour
Booléen
Exemple
L'instruction CREATE TABLE ci-dessous crée la table empty_test avec la valeur geotype, qui stocke le type de données des sous-classes stockées dans la colonne g1 de type ST_Geometry.
Les instructions INSERT insèrent deux enregistrements pour chacune des sous-classes de géométrie point, linestring et polygon : une sous-classe est vide et l'autre ne l'est pas.
Oracle
CREATE TABLE empty_test (geotype varchar(20), g1 sde.st_geometry);
INSERT INTO EMPTY_TEST VALUES (
'Point',
sde.st_pointfromtext ('point (10.02 20.01)', 0)
);
INSERT INTO EMPTY_TEST VALUES (
'Point',
sde.st_pointfromtext ('point empty', 0)
);
INSERT INTO EMPTY_TEST VALUES (
'Linestring',
sde.st_linefromtext ('linestring (10.02 20.01, 10.32 23.98, 11.92 25.64)', 0)
);
INSERT INTO EMPTY_TEST VALUES (
'Linestring',
sde.st_linefromtext ('linestring empty', 0)
);
INSERT INTO EMPTY_TEST VALUES (
'Polygon',
sde.st_polyfromtext ('polygon ((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01))', 0)
);
PostgreSQL
CREATE TABLE empty_test (geotype varchar(20), g1 sde.st_geometry);
INSERT INTO empty_test VALUES (
'Point',
sde.st_point ('point (10.02 20.01)', 0)
);
INSERT INTO empty_test VALUES (
'Point',
sde.st_point ('point empty', 0)
);
INSERT INTO empty_test VALUES (
'Linestring',
sde.st_linestring ('linestring (10.02 20.01, 10.32 23.98, 11.92 25.64)', 0)
);
INSERT INTO empty_test VALUES (
'Linestring',
sde.st_linestring ('linestring empty', 0)
);
INSERT INTO empty_test VALUES (
'Polygon',
sde.st_polygon ('polygon ((10.02 20.01, 11.92 35.64, 25.02 34.15,
19.15 33.94, 10.02 20.01))', 0)
);
La requête SELECT retourne le type de géométrie de la colonne geotype et les résultats de la fonction ST_IsEmpty.
Oracle
SELECT geotype, sde.st_isempty (g1) Is_it_empty
FROM EMPTY_TEST;
GEOTYPE Is_it_empty
Point 0
Point 1
Linestring 0
Linestring 1
Polygon 1
PostgreSQL
SELECT geotype, sde.st_isempty (g1) AS Is_it_empty
FROM empty_test;
geotype is_it_empty
Point f
Point t
Linestring f
Linestring t
Polygon f
9/12/2013