]> granicus.if.org Git - postgis/commitdiff
Added notes about PointN, GeometryN and InteriorRingN indexing method
authorSandro Santilli <strk@keybit.net>
Tue, 6 Sep 2005 09:22:17 +0000 (09:22 +0000)
committerSandro Santilli <strk@keybit.net>
Tue, 6 Sep 2005 09:22:17 +0000 (09:22 +0000)
git-svn-id: http://svn.osgeo.org/postgis/branches/pgis_1_0@1890 b70326c6-7e19-0410-871a-916f4a2858ee

CHANGES
doc/postgis.xml

diff --git a/CHANGES b/CHANGES
index 5860f156ad34b3a3a33cf76318eb8c2ab6a7786f..6f26c232eb1074013f0ff52901045627613103b3 100644 (file)
--- 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
index f1264d7dbcff00603653f6c5eeb21ff3cd74f653..ef113d33f9d3a7b3a4cad398923406254032a1d8 100644 (file)
@@ -3411,7 +3411,10 @@ dimension
               GEOMETRYCOLLECTION, MULTIPOINT, MULTILINESTRING or MULTIPOLYGON.
               Otherwise, return NULL.</para>
 
-              <para>1 is 1st geometry</para>
+               <note> <para>
+               Index is 1-based as for OGC specs since version 0.8.0.
+               Previous versions implemented this as 0-based instead.
+               </para></note>
             </listitem>
           </varlistentry>
 
@@ -3432,6 +3435,10 @@ dimension
               <para>Return the N'th point in the first linestring in the
               geometry. Return NULL if there is no linestring in the
               geometry.</para>
+               <note> <para>
+               Index is 1-based as for OGC specs since version 0.8.0.
+               Previous versions implemented this as 0-based instead.
+               </para></note>
             </listitem>
           </varlistentry>
 
@@ -3460,7 +3467,11 @@ dimension
             <listitem>
               <para>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).</para>
+             N is out of range.</para>
+               <note> <para>
+               Index is 1-based as for OGC specs since version 0.8.0.
+               Previous versions implemented this as 0-based instead.
+               </para></note>
             </listitem>
           </varlistentry>