[postgis-commits] svn - r3082 - trunk/doc
postgis-commits at postgis.refractions.net
postgis-commits at postgis.refractions.net
Wed Oct 8 11:51:22 PDT 2008
Author: robe
Date: 2008-10-08 11:51:22 -0700 (Wed, 08 Oct 2008)
New Revision: 3082
Modified:
trunk/doc/reference_new.xml
Log:
update st_translate include support for 3d flag
Modified: trunk/doc/reference_new.xml
===================================================================
--- trunk/doc/reference_new.xml 2008-10-08 18:27:16 UTC (rev 3081)
+++ trunk/doc/reference_new.xml 2008-10-08 18:51:22 UTC (rev 3082)
@@ -2632,6 +2632,12 @@
based on the units defined in spatial reference (SRID) for this geometry.</para>
<para>Availability: 1.2.2</para>
+ <!-- Optionally mention 3d support -->
+ <para><inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/check.png" />
+ </imageobject>
+ </inlinemediaobject> This function supports 3d and will not drop the z-index.</para>
</refsection>
<refsection>
@@ -2649,7 +2655,13 @@
wgs_transgeomtxt
---------------------------------------
LINESTRING(-70.01 42.87,-70.11 42.88)
- </programlisting>
+ </programlisting>
+ <para>Move a 3d point</para>
+ <programlisting>SELECT ST_AsEWKT(ST_Translate(CAST('POINT(0 0 0)' As geometry), 5, 12,3));
+ st_asewkt
+ ---------
+ POINT(5 12 3)
+ </programlisting>
</refsection>
<!-- Optionally add a "See Also" section -->
More information about the postgis-commits
mailing list