From: Sandro Santilli Date: Tue, 6 Sep 2005 09:22:17 +0000 (+0000) Subject: Added notes about PointN, GeometryN and InteriorRingN indexing method X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3901e76231c22e07f316b329bae047301cca3db1;p=postgis Added notes about PointN, GeometryN and InteriorRingN indexing method git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1890 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/CHANGES b/CHANGES index 5860f156a..6f26c232e 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,7 @@ PostGIS 1.0.4 fixed segfault on MULTILINESTRING input. - Fixed bug in MakeLine dimension handling - Looser syntax acceptance in box3d parser + - Documentation improvements PostGIS 1.0.3 2005/08/08 diff --git a/doc/postgis.xml b/doc/postgis.xml index f1264d7db..ef113d33f 100644 --- a/doc/postgis.xml +++ b/doc/postgis.xml @@ -3411,7 +3411,10 @@ dimension GEOMETRYCOLLECTION, MULTIPOINT, MULTILINESTRING or MULTIPOLYGON. Otherwise, return NULL. - 1 is 1st geometry + + Index is 1-based as for OGC specs since version 0.8.0. + Previous versions implemented this as 0-based instead. + @@ -3432,6 +3435,10 @@ dimension Return the N'th point in the first linestring in the geometry. Return NULL if there is no linestring in the geometry. + + Index is 1-based as for OGC specs since version 0.8.0. + Previous versions implemented this as 0-based instead. + @@ -3460,7 +3467,11 @@ dimension Return the N'th interior ring of the polygon geometry. Return NULL if the geometry is not a polygon or the given - N is out of range (1-based). + N is out of range. + + Index is 1-based as for OGC specs since version 0.8.0. + Previous versions implemented this as 0-based instead. +