Définition
La fonction ST_Entity renvoie le type d'entité spatiale d'un objet géométrie. Le type d'entité spatiale est la valeur stockée dans le champ du membre de l'entité de l'objet géométrie.
Syntaxe
Oracle et PostgreSQL
sde.st_entity (geometry1 sde.st_geometry)
SQLite
st_entity (geometry1 geometryblob)
Type de retour
Renvoie un nombre (Oracle) ou un entier (SQLite et PostgreSQL) représentant les types d'entités suivants :
0 | Forme nil |
1 | point |
2 | Ligne (y compris les lignes spaghetti) |
4 | linestring |
8 | aire |
257 | multi-points |
258 | Multiligne (y compris les lignes spaghetti) |
260 | multilinestring |
264 | Multisurface |
Exemple
Les exemples suivants permettent de créer une table et d'y insérer différentes géométries. ST_Entity est exécuté sur la table pour renvoyer le sous-type de géométrie de chaque enregistrement dans la table.
Oracle
CREATE TABLE sample_geos (
id integer,
geometry sde.st_geometry
);
INSERT INTO sample_geos (id, geometry) VALUES (
1901,
sde.st_geometry ('point (1 2)', 4326)
);
INSERT INTO sample_geos (id, geometry) VALUES (
1902,
sde.st_geometry ('linestring (33 2, 34 3, 35 6)', 4326)
);
INSERT INTO sample_geos (id, geometry) VALUES (
1903,
sde.st_geometry ('polygon ((3 3, 4 6, 5 3, 3 3))', 4326)
);
SELECT sde.st_entity (geometry) entity, UPPER (sde.st_geometrytype (geometry)) TYPE
FROM sample_geos;
L’instruction SELECT renvoie les valeurs suivantes :
ENTITY TYPE 1 ST_POINT 4 ST_LINESTRING 8 ST_POLYGON
PostgreSQL
CREATE TABLE sample_geos (
id integer,
geometry sde.st_geometry
);
INSERT INTO sample_geos (id, geometry) VALUES (
1900,
sde.st_geometry ('Point Empty', 4326)
);
INSERT INTO sample_geos (id, geometry) VALUES (
1901,
sde.st_geometry ('point (1 2)', 4326)
);
INSERT INTO sample_geos (id, geometry) VALUES (
1902,
sde.st_geometry ('linestring (33 2, 34 3, 35 6)', 4326)
);
INSERT INTO sample_geos (id, geometry) VALUES (
1903,
sde.st_geometry ('polygon ((3 3, 4 6, 5 3, 3 3))', 4326)
);
INSERT INTO sde.entity_test (id, geometry) VALUES (
1904,
sde.st_geometry ('multipoint (10.01 20.03, 10.52 40.11, 30.29 41.56, 31.78 10.74)', 4326)
);
INSERT INTO sde.entity_test (id, geometry) VALUES (
1905,
sde.st_geometry ('multilinestring ((10.01 20.03, 10.52 40.11, 30.29 41.56,31.78 10.74), (20.93 20.81, 21.52 40.10))', 4326)
);
INSERT INTO sde.entity_test (id, geometry) VALUES (
1906,
sde.st_geometry ('multipolygon (((3 3, 4 6, 5 3, 3 3), (8 24, 9 25, 1 28, 8 24), (13 33, 7 36, 1 40, 10 43, 13 33)))', 4326)
);
SELECT id AS "id",
sde.st_entity (geometry) AS "entity",
sde.st_geometrytype (geometry) AS "geom_type"
FROM sample_geos;
L’instruction SELECT renvoie les valeurs suivantes :
id entity geom_type 1900 0 "ST_GEOMETRY" 1901 1 "ST_POINT" 1902 4 "ST_LINESTRING" 1903 8 "ST_POLYGON" 1904 257 "ST_MULTIPOINT" 1905 260 "ST_MULTILINESTRING" 1906 264 "ST_MULTIPOLYGON"
SQLite
CREATE TABLE sample_geos (
id integer primary key autoincrement not null
);
SELECT AddGeometryColumn (
NULL,
'sample_geos',
'geometry',
4326,
'geometry',
'xy',
'null'
);
INSERT INTO sample_geos (geometry) VALUES (
st_geometry ('point (1 2)', 4326)
);
INSERT INTO sample_geos (geometry) VALUES (
st_geometry ('linestring (33 2, 34 3, 35 6)', 4326)
);
INSERT INTO sample_geos (geometry) VALUES (
st_geometry ('polygon ((3 3, 4 6, 5 3, 3 3))', 4326)
);
SELECT st_entity (geometry) AS "entity",
st_geometrytype (geometry) AS "type"
FROM sample_geos;
L’instruction SELECT renvoie les valeurs suivantes :
entity type 1 ST_POINT 4 ST_LINESTRING 8 ST_POLYGON