]> granicus.if.org Git - postgis/commitdiff
#2871 fix update to 2.0 message for ST_LineInterpolatePoint, ST_LineSubstring and...
authorRegina Obe <lr@pcorp.us>
Wed, 20 Aug 2014 04:21:47 +0000 (04:21 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 20 Aug 2014 04:21:47 +0000 (04:21 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@12898 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_editor.xml
doc/reference_lrs.xml

index 7e12e98ba33bfc5144e9562cba886a87aa8f9202..9d88a5f3865457ebc1dddafcb66d2ff856699074 100644 (file)
@@ -727,7 +727,7 @@ MULTILINESTRING((-45.2 -33.2,-46 -32),(-29 -27,-30 -29.7,-36 -31,-45 -33))
                </refsection>
                <refsection>
                        <title>See Also</title>
-                       <para><xref linkend="ST_Segmentize" />, <xref linkend="ST_Line_Substring" /></para>
+                       <para><xref linkend="ST_Segmentize" />, <xref linkend="ST_LineSubstring" /></para>
                </refsection>
        </refentry>
 
index 6eeaa78eb7021a936fa22f85edf38f95dc102896..c34e7a522c72170026b282eacd34db6783ca2903 100644 (file)
                        must be a LINESTRING. Second argument is a float8 between 0 and 1
                        representing fraction of total linestring length the point has to be located.</para>
 
-                       <para>See <xref linkend="ST_Line_Locate_Point" /> for
+                       <para>See <xref linkend="ST_LineLocatePoint" /> for
                        computing the line location nearest to a Point.</para>
-
+                       
                        <note>
                          <para>Since release 1.1.1 this function also interpolates M and
                          Z values (when present), while prior releases set them to
                          0.0.</para>
                        </note>
                        <para>Availability: 0.8.2, Z and M supported added in 1.1.1</para>
-      <para>Changed: 2.1.0. Up to 2.0.x this was called ST_LineInterpolatePoint.</para>
+                       <para>Changed: 2.1.0. Up to 2.0.x this was called ST_Line_Interpolate_Point.</para>
                        <para>&Z_support;</para>
                  </refsection>
 
@@ -83,11 +83,11 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo;
                  <refsection>
                        <title>See Also</title>
 
-                       <para><xref linkend="ST_AsText" />, <xref linkend="ST_AsEWKT" />, <xref linkend="ST_Length" />, <xref linkend="ST_Line_Locate_Point" /></para>
+                       <para><xref linkend="ST_AsText" />, <xref linkend="ST_AsEWKT" />, <xref linkend="ST_Length" />, <xref linkend="ST_LineLocatePoint" /></para>
                  </refsection>
                </refentry>
 
-               <refentry id="ST_Line_Locate_Point">
+               <refentry id="ST_LineLocatePoint">
                  <refnamediv>
                        <refname>ST_LineLocatePoint</refname>
 
@@ -113,8 +113,8 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo;
                        the closest point on LineString to the given Point, as a fraction
                        of total <link linkend="ST_Length2D">2d line</link> length.</para>
 
-                       <para>You can use the returned location to extract a Point (<xref linkend="ST_Line_Interpolate_Point" />) or
-                       a substring (<xref linkend="ST_Line_Substring" />).</para>
+                       <para>You can use the returned location to extract a Point (<xref linkend="ST_LineInterpolatePoint" />) or
+                       a substring (<xref linkend="ST_LineSubstring" />).</para>
 
                        <para>This is useful for approximating numbers of addresses</para>
 
@@ -164,11 +164,11 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo;
                  <refsection>
                        <title>See Also</title>
 
-                       <para><xref linkend="ST_DWithin" />, <xref linkend="ST_Length2D" />, <xref linkend="ST_Line_Interpolate_Point" />, <xref linkend="ST_Line_Substring" /></para>
+                       <para><xref linkend="ST_DWithin" />, <xref linkend="ST_Length2D" />, <xref linkend="ST_LineInterpolatePoint" />, <xref linkend="ST_LineSubstring" /></para>
                  </refsection>
                </refentry>
 
-               <refentry id="ST_Line_Substring">
+               <refentry id="ST_LineSubstring">
                  <refnamediv>
                        <refname>ST_LineSubstring</refname>
 
@@ -199,9 +199,9 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo;
                        To use with contiguous MULTILINESTRINGs use in conjunction with <xref linkend="ST_LineMerge" />.</para>
 
                        <para>If 'start' and 'end' have the same value this is equivalent
-                       to <xref linkend="ST_Line_Interpolate_Point" />.</para>
+                       to <xref linkend="ST_LineInterpolatePoint" />.</para>
 
-                       <para>See <xref linkend="ST_Line_Locate_Point" /> for
+                       <para>See <xref linkend="ST_LineLocatePoint" /> for
                        computing the line location nearest to a Point.</para>
 
                        <note>
@@ -211,7 +211,7 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo;
                        </note>
 
                        <para>Availability: 1.1.0, Z and M supported added in 1.1.1</para>
-    <para>Changed: 2.1.0. Up to 2.0.x this was called ST_LineSubstring.</para>
+                       <para>Changed: 2.1.0. Up to 2.0.x this was called ST_Line_Substring.</para>
                        <para>&Z_support;</para>
                  </refsection>