Use the CIRCULARSTRING type, and the ST_CurveToLine(geometry) function
to convert it to a linestring.
CREATE TABLE test ( GEOM geometry );
INSERT INTO test VALUES ('CIRCULARSTRING(0 0, 1 1, 2 0)');
SELECT ST_AsText(ST_CurveToLine(geom)) FROM test;
P
On Fri, Apr 18, 2008 at 7:53 AM, JohanNL <
johan12365@...> wrote:
_______________________________________________
postgis-users mailing list
postgis-users@...
http://postgis.refractions.net/mailman/listinfo/postgis-users