Re: [postgis-users] Problems to transform LineStringZM to MultiLineStringZM

2013-06-13 Thread José María
Thanks!! That is the solution!! 2013/6/12 Mike Toews > Try using the correct typmod, which uses [ZM]+ dimensions in the type name: > > alter table elevacion_89 > alter column the_geom > type geometry(MultiLinestringZM, 25830) > using ST_Multi(the_geom); > > (it's actually case insensit

Re: [postgis-users] Problems to transform LineStringZM to MultiLineStringZM

2013-06-11 Thread Mike Toews
Try using the correct typmod, which uses [ZM]+ dimensions in the type name: alter table elevacion_89 alter column the_geom type geometry(MultiLinestringZM, 25830) using ST_Multi(the_geom); (it's actually case insensitive) -Mike On 12 June 2013 05:50, José María wrote: > Hello! > > I ge