From: Regina Obe Date: Sat, 8 Nov 2008 14:17:55 +0000 (+0000) Subject: document more functions that work with circular strings X-Git-Tag: 1.4.0b1~512 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55b8000fa384122fcde8fe5f7429d69311c8d85d;p=postgis document more functions that work with circular strings git-svn-id: http://svn.osgeo.org/postgis/trunk@3281 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_new.xml b/doc/reference_new.xml index 7c6659c03..0381d6552 100644 --- a/doc/reference_new.xml +++ b/doc/reference_new.xml @@ -2309,6 +2309,13 @@ LINESTRING(0 0 1,1 1 1,1 2 1,1 1 1,0 0 1) This function supports 3d and will not drop the z-index. + + + + + + + This method supports Circular Strings and Curves @@ -2506,6 +2513,20 @@ FROM (SELECT ST_BuildArea( ST_IsClosed(NULL) to be 0, while PostGIS returns NULL. + + + + + + + This function supports 3d and will not drop the z-index. + + + + + + + This method supports Circular Strings and Curves @@ -2595,6 +2616,13 @@ postgis=# SELECT ST_IsClosed('MULTIPOINT((0 0), (1 1))'::geometry); This method implements the SQL/MM specification: SQL-MM 3: 5.1.7 + + + + + + This method supports Circular Strings and Curves + @@ -2627,6 +2655,13 @@ SELECT ST_IsEmpty(ST_GeomFromText('POLYGON((1 2, 3 4, 5 6, 1 2))')); t (1 row) + SELECT ST_IsEmpty(ST_GeomFromText('CIRCULARSTRING EMPTY')); + st_isempty +------------ + t +(1 row) + + @@ -4790,7 +4825,7 @@ SELECT ST_AsEWKT(ST_SnapToGrid(ST_GeomFromEWKT('LINESTRING(-1.1115678 2.123 3 2. Examples Change Mass state plane US feet geometry to WGS 84 long lat - SELECT ST_AsText(ST_Transform(ST_GeomFromText('POLYGON((743238 2967416,743238 2967450, +SELECT ST_AsText(ST_Transform(ST_GeomFromText('POLYGON((743238 2967416,743238 2967450, 743265 2967450,743265.625 2967416,743238 2967416))',2249),4326)) As wgs_geom; wgs_geom