[postgis-commits] svn - r3306 - branches/1.3/doc

postgis-commits at postgis.refractions.net postgis-commits at postgis.refractions.net
Thu Nov 20 05:42:01 PST 2008


Author: robe
Date: 2008-11-20 05:42:00 -0800 (Thu, 20 Nov 2008)
New Revision: 3306

Modified:
   branches/1.3/doc/postgis.xml
Log:
Update ST_AsKML and ST_Transform - they require proj support.  Also add missing version arg in ST_AsKML

Modified: branches/1.3/doc/postgis.xml
===================================================================
--- branches/1.3/doc/postgis.xml	2008-11-20 13:32:19 UTC (rev 3305)
+++ branches/1.3/doc/postgis.xml	2008-11-20 13:42:00 UTC (rev 3306)
@@ -4518,12 +4518,16 @@
           </varlistentry>
 
           <varlistentry>
-            <term>ST_AsKML(geometry, [precision])</term>
+            <term>ST_AsKML([version], geometry, [precision])</term>
 
             <listitem>
               <para>Return the geometry as a KML element. Second argument may
               be used to reduce the maximum number of significant digits used
-              in output (defaults to 15).</para>
+              in output (defaults to 15). Version defaults to 2</para>
+			  
+			  <note>
+				  <para>Requires PostGIS be compiled with Proj support.  Use PostGIS_Full_Version() to confirm you have proj support compiled in.</para>
+			  </note>
             </listitem>
           </varlistentry>
           <varlistentry>
@@ -4893,6 +4897,10 @@
               <para>Returns a new geometry with its coordinates transformed to
               the SRID referenced by the integer parameter. The destination
               SRID must exist in the <varname>SPATIAL_REF_SYS</varname> table.</para>
+			  
+			  <note>
+				  <para>Requires PostGIS be compiled with Proj support.  Use PostGIS_Full_Version() to confirm you have proj support compiled in.</para>
+			  </note>
             </listitem>
           </varlistentry>
 



More information about the postgis-commits mailing list