From: Regina Obe Date: Wed, 20 Aug 2014 04:21:47 +0000 (+0000) Subject: #2871 fix update to 2.0 message for ST_LineInterpolatePoint, ST_LineSubstring and... X-Git-Tag: 2.2.0rc1~885 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b2a9cc1db552b1a5c2ce83a98744803fefa3af7;p=postgis #2871 fix update to 2.0 message for ST_LineInterpolatePoint, ST_LineSubstring and ST_LineLocatePoint. Also changed reference ids to match new function name git-svn-id: http://svn.osgeo.org/postgis/trunk@12898 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_editor.xml b/doc/reference_editor.xml index 7e12e98ba..9d88a5f38 100644 --- a/doc/reference_editor.xml +++ b/doc/reference_editor.xml @@ -727,7 +727,7 @@ MULTILINESTRING((-45.2 -33.2,-46 -32),(-29 -27,-30 -29.7,-36 -31,-45 -33)) See Also - , + , diff --git a/doc/reference_lrs.xml b/doc/reference_lrs.xml index 6eeaa78eb..c34e7a522 100644 --- a/doc/reference_lrs.xml +++ b/doc/reference_lrs.xml @@ -27,16 +27,16 @@ 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. - See for + See for computing the line location nearest to a Point. - + Since release 1.1.1 this function also interpolates M and Z values (when present), while prior releases set them to 0.0. Availability: 0.8.2, Z and M supported added in 1.1.1 - Changed: 2.1.0. Up to 2.0.x this was called ST_LineInterpolatePoint. + Changed: 2.1.0. Up to 2.0.x this was called ST_Line_Interpolate_Point. &Z_support; @@ -83,11 +83,11 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo; See Also - , , , + , , , - + ST_LineLocatePoint @@ -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 2d line length. - You can use the returned location to extract a Point () or - a substring (). + You can use the returned location to extract a Point () or + a substring (). This is useful for approximating numbers of addresses @@ -164,11 +164,11 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo; See Also - , , , + , , , - + ST_LineSubstring @@ -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 . If 'start' and 'end' have the same value this is equivalent - to . + to . - See for + See for computing the line location nearest to a Point. @@ -211,7 +211,7 @@ FROM (SELECT ST_GeomFromText('LINESTRING(1 2, 4 5, 6 7)') As the_line) As foo; Availability: 1.1.0, Z and M supported added in 1.1.1 - Changed: 2.1.0. Up to 2.0.x this was called ST_LineSubstring. + Changed: 2.1.0. Up to 2.0.x this was called ST_Line_Substring. &Z_support;