Hi list<br><br>I have question regarding making 3DM point column in PostGIS.<br><br>When I try to insert POINTM(x,y,m),<br>if the dimension of the column is 3 it drops the M dimension, <br>and when I make the dimension 4 it asks for the z dimension.<br>
<br>How should I make the geometry column to have only x,y,m so I can insert POINTM?<br><br>Here is example of the query <br><br>CREATE TABLE road( <br>  road_id INTEGER,<br>  road_name VARCHAR<br>);<br>SELECT AddGeometryColumn( 'road', 'roads_geom', -1, 'GEOMETRY',3 );<br>
<br>insert into temptest (road_id, road_name, roads_geom) values (21,'test', ST_GeomFromEWKT('POINTM(191232 243118 1111)'))<br><br>select st_astext(roads_geom) from temptest<br clear="all"><br>I appreciate your help!<br>
-- <br>Masanao Yajima<br>