Skip to content

ST_PointM

Constructs a Point with an M (measure) coordinate from X, Y, and M values.

Usage

geometry ST_PointM(x: double, y: double, m: double)

Arguments

  • x (double)
  • y (double)
  • m (double)

Examples

SELECT ST_PointM(-64.36, 45.09, 50.0);
┌───────────────────────────────────────────────────────┐
│ st_pointm(Float64(-64.36),Float64(45.09),Float64(50)) │
│                        geometry                       │
╞═══════════════════════════════════════════════════════╡
│ POINT M(-64.36 45.09 50)                              │
└───────────────────────────────────────────────────────┘