ST_MaxY
Définition
La fonction ST_MaxY part d'une géométrie comme paramètre en entrée et renvoie sa coordonnée y maximale.
Syntaxe
Oracle et PostgreSQL
sde.st_maxy (geometry1 sde.st_geometry)
SQLite
st_maxy (geometry1 geometryblob)
Type de retour
Oracle et PostgreSQL
Nombre
SQLite
Double précision
Exemple
La table maxy_test est créée et deux polygones y sont insérés. Ensuite, la fonction ST_MaxY est exécutée pour déterminer la valeur y maximale de chaque polygone.
Oracle
CREATE TABLE maxy_test (
id integer,
geometry sde.st_geometry
);
INSERT INTO MAXY_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 MAXY_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_maxy (geometry) Max_Y
FROM MAXY_TEST;
ID MAX_Y
1901 140
1902 4
PostgreSQL
CREATE TABLE maxy_test (
id integer,
geometry sde.st_geometry
);
INSERT INTO maxy_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 maxy_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_maxy (geometry)
AS Max_Y
FROM maxy_test;
id max_y
1901 140
1902 4
SQLite
CREATE TABLE maxy_test (
id integer
);
SELECT AddGeometryColumn (
NULL,
'maxy_test',
'geometry',
4326,
'polygonzm',
'xyzm',
'null'
);
INSERT INTO maxy_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 maxy_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, st_maxy (geometry)
AS "max_y"
FROM maxy_test;
id max_y
1901 140.0
1902 4.00000000
Thèmes connexes
5/10/2014