ST_MaxZ

Définition

La fonction ST_MaxZ part d'une géométrie comme paramètre en entrée et renvoie sa coordonnée z maximale.

Syntaxe

Oracle et PostgreSQL

sde.st_maxz (geometry1 sde.st_geometry)

SQLite

st_maxz (geometry1 geometryblob)

Type de retour

Oracle et PostgreSQL

Nombre

Si aucune valeur z n'est présente, la valeur Null est renvoyée.

SQLite

Double précision

Si aucune valeur z n'est présente, la valeur Null est renvoyée.

Exemple

Dans l'exemple suivant, la table maxz_test est créée et deux polygones y sont insérés. Ensuite, la fonction ST_MaxZ est exécutée pour renvoyer la valeur z maximale de chaque polygone.

Oracle

CREATE TABLE maxz_test (
 id integer,
 geometry sde.st_geometry
);

INSERT INTO MAXZ_TEST VALUES (
 1901,
 sde.st_polygon ('polygon zm((110 120 20 3, 110 140 22 3, 120 130 26 4, 110 120 20 3))', 4326)
);

INSERT INTO MAXZ_TEST VALUES (
 1902,
 sde.st_polygon ('polygon zm((0 0 40 7, 0 4 35 9, 5 4 32 12, 5 0 31 5, 0 0 40 7))', 4326)
);

SELECT id, sde.st_maxz (geometry) Max_Z
 FROM MAXZ_TEST;

        ID      MAX_Z

      1901         26
      1902         40

PostgreSQL

CREATE TABLE maxz_test (
 id integer,
 geometry sde.st_geometry
);

INSERT INTO maxz_test VALUES (
 1901,
 sde.st_polygon ('polygon zm((110 120 20 3, 110 140 22 3, 120 130 26 4, 110 120 20 3))', 4326)
);

INSERT INTO maxz_test VALUES (
 1902,
 sde.st_polygon ('polygon zm((0 0 40 7, 0 4 35 9, 5 4 32 12, 5 0 31 5, 0 0 40 7))', 4326)
);

SELECT id, sde.st_maxz (geometry) 
 AS Max_Z
 FROM maxz_test;

        id      max_z

      1901         26
      1902         40

SQLite

CREATE TABLE maxz_test (
 id integer
);

SELECT AddGeometryColumn (
 NULL,
 'maxz_test',
 'geometry',
 4326,
 'polygonzm',
 'xyzm',
 'null'
);

INSERT INTO maxz_test VALUES (
 1901,
 st_polygon ('polygon zm((110 120 20 3, 110 140 22 3, 120 130 26 4, 110 120 20 3))', 4326)
);

INSERT INTO maxz_test VALUES (
 1902,
 st_polygon ('polygon zm((0 0 40 7, 0 4 35 9, 5 4 32 12, 5 0 31 5, 0 0 40 7))', 4326)
);

SELECT id AS "ID", st_maxz (geometry) AS "Max Z"
 FROM maxz_test;

ID      Max Z

1901    26.0
1902    40.0

Thèmes connexes

5/10/2014