From f9d8fbfb0a6a9968254be5dd6647f49cbc1232cb Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Fri, 16 Aug 2013 00:57:28 +0000 Subject: [PATCH] #2435 ST_Summary document S flag git-svn-id: http://svn.osgeo.org/postgis/trunk@11805 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference_accessor.xml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/doc/reference_accessor.xml b/doc/reference_accessor.xml index 2ada90fbb..ed81cbf6c 100644 --- a/doc/reference_accessor.xml +++ b/doc/reference_accessor.xml @@ -2113,10 +2113,13 @@ Returns a text summary of the contents of the geometry. Z: has Z ordinate B: has a cached bounding box G: is geodetic (geography) + S: has spatial reference system - Availability: 1.2.2 - 2.0.0 added support for geography + Availability: 1.2.2 + Enhanced: 2.0.0 added support for geography + Enhanced: 2.1.0 S flag to denote if has a known spatial reference system @@ -2128,20 +2131,20 @@ Returns a text summary of the contents of the geometry. ST_Summary(ST_GeogFromText('POLYGON((0 0, 1 1, 1 2, 1 1, 0 0))')) geog; geom | geog -----------------------------+-------------------------- - LineString[B] with 2 points | Polygon[BG] with 1 rings - : ring 0 has 5 points + LineString[B] with 2 points | Polygon[BGS] with 1 rings + | ring 0 has 5 points : (1 row) =# SELECT ST_Summary(ST_GeogFromText('LINESTRING(0 0 1, 1 1 1)')) As geog_line, - ST_Summary(ST_GeomFromText('POLYGON((0 0 1, 1 1 2, 1 2 3, 1 1 1, 0 0 1))')) As geom_poly; + ST_Summary(ST_GeomFromText('SRID=4326;POLYGON((0 0 1, 1 1 2, 1 2 3, 1 1 1, 0 0 1))')) As geom_poly; ; - geog_line | geom_poly --------------------------------+-------------------------- - LineString[ZBG] with 2 points | Polygon[ZB] with 1 rings - : ring 0 has 5 points - : + geog_line | geom_poly +-------------------------------- +-------------------------- + LineString[ZBGS] with 2 points | Polygon[ZBS] with 1 rings + : ring 0 has 5 points + : (1 row) -- 2.50.1