Name

ST_M — Returns the M coordinate of a Point.

Synopsis

float ST_M(geometry a_point);

Descrizione

Restituisce la coordinata M del punto, o NULL se non disponibile. L'input deve essere un punto.

[Note]

This is not (yet) part of the OGC spec, but is listed here to complete the point coordinate extractor function list.

Questo metodo implementa le OGC Simple Features Implementation Specification for SQL 1.1.

Questo metodo implementa la specifica SQL/MM.

Questa funzione supporta il 3d e non distrugge gli z-index.

Esempi

SELECT ST_M(ST_GeomFromEWKT('POINT(1 2 3 4)'));
 st_m
------
        4
(1 row)

                

Si veda anche

ST_GeomFromEWKT, ST_X, ST_Y, ST_Z