Name

ST_MSize — Returns the M size of a geometry.

Synopsis

float ST_MSize(geometry geom);

Descrizione

Returns the M size of a geometry, computed as ST_MMax(geom) - ST_MMin(geom), or null if the geometry lacks M values.

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

Questo metodo supporta le Curve e le Circular String.

Availability: 3.7.0

Esempi

SELECT ST_MSize('LINESTRING M (1 2 3, 4 6 8)');
5