[postgis-users] 3D data became 2d auf insertion?

2008-01-22 Thread Simon Schneider
Hi, I have the following table... _ create table objects ( name varchar(15) not null primary key, parent varchar(15), type varchar(15) not null ); select addgeometrycolumn('objects','geom',-1,'POLYGON',3); _

Re: [postgis-users] 3D data became 2d auf insertion?

2008-01-22 Thread Mark Cave-Ayland
On Tue, 2008-01-22 at 16:53 +0100, Simon Schneider wrote: Hi, I have the following table... _ create table objects ( name varchar(15) not null primary key, parent varchar(15), type varchar(15) not null ); select

Re: [postgis-users] 3D data became 2d auf insertion?

2008-01-22 Thread Simon Schneider
Thx, your tip worked. My original query was select Astext(geom3d) from objects. With select AsEWKT(geom3d) from objects everythin worked fine. Bye, Simon ___ postgis-users mailing list postgis-users@postgis.refractions.net