]> granicus.if.org Git - postgis/commitdiff
typo fixes and linked function in 4.2.4
authorMarkus Schaber <markus@schabi.de>
Thu, 7 Apr 2005 21:02:09 +0000 (21:02 +0000)
committerMarkus Schaber <markus@schabi.de>
Thu, 7 Apr 2005 21:02:09 +0000 (21:02 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1606 b70326c6-7e19-0410-871a-916f4a2858ee

doc/Makefile
doc/postgis.xml

index 86ab15a2e2f2712ad62b57e1af32e0f88f26da99..f10c6374d60201813bb1d58ef741db75c2dad5a8 100644 (file)
@@ -6,6 +6,7 @@ include ../Version.config
 LAST_RELEASE_VERSION = $(SO_MAJOR_VERSION).$(SO_MINOR_VERSION).$(SO_MICRO_VERSION)
 
 XSLBASE?=/usr/share/sgml/docbook/xsl-stylesheets
+XSLBASE = /usr/share/xml/docbook/stylesheet/nwalsh
 
 all: html
 
index c3e8ed9928fa18fe27b01ec402ce8aac8de977af..52dc9c720516cd1574e62e1b68b4f36e96e646ff 100644 (file)
@@ -1216,7 +1216,7 @@ SELECT AddGeometryColumn( 'roads', 'roads_geom', -1, 'GEOMETRY', 3 );</programli
        rely on the assumption that your geometries are valid
         as specified by the OpenGIS Simple Feature Specification.
        To check validity of geometries you can use the
-       <link linkend="IsValid">isvalid()</link> function:</para>
+       <link linkend="IsValid">IsValid()</link> function:</para>
 
         <programlisting>gisdb=# select isvalid('LINESTRING(0 0, 1 1)'), isvalid('LINESTRING(0 0,0 0)');
  isvalid | isvalid
@@ -1234,16 +1234,17 @@ SELECT AddGeometryColumn( 'roads', 'roads_geom', -1, 'GEOMETRY', 3 );</programli
         <para>If you encounter any strange error messages such as "GEOS Intersection() threw an 
         error!" or "JTS Intersection() threw an error!" when calling PostGIS functions with valid
         input geometries, you likely found an error in either PostGIS or one of the libraries it
-        uses, and you should contact the PostGIS developers. The same is true if an PostGIS returns
+        uses, and you should contact the PostGIS developers. The same is true if a PostGIS function returns
         an invalid geometry for valid input.</para>
 
        <note>
        <para>
        Strictly compliant OGC geometries cannot have Z or M values.
        The <link linkend="IsValid">IsValid()</link> function won't
-       consider higher dimensioned geometries invalid ! Invocations
-       of AddGeometryColumn() will add a constraint checking geometry
-       dimensions, so it is enough to specify 2 there.
+       consider higher dimensioned geometries invalid! Invocations
+       of <link linkend="AddGeometryColumn">AddGeometryColumn()</link>
+        will add a constraint checking geometry dimensions, so it is
+        enough to specify 2 there.
        </para>
        </note>
 
@@ -2706,7 +2707,7 @@ dimension(the_geom)>2" skips re-writing of geometries that already are in 2D.
         <title>Management Functions</title>
 
         <variablelist>
-          <varlistentry>
+          <varlistentry id="AddGeometryColumn">
             <term>AddGeometryColumn(varchar, varchar, varchar, integer,
             varchar, integer)</term>