ST_PointZM
Name
ST_PointZM — Creates a Point with X, Y, Z, M and SRID values.
Synopsis
    
     geometry
     
      ST_PointZM
     
     (
    
    float
    
     x
    
    , float
    
     y
    
    , float
    
     z
    
    , float
    
     m
    
    , integer
    
     srid=unknown
    
    
     )
    
    ;
   
Description
Returns an Point with the given X, Y, Z and M coordinate values, and optionally an SRID number.
Enhanced: 3.2.0 srid as an extra optional argument was added. Older installs require combining with ST_SetSRID to mark the srid on the geometry.