[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-175-g4e56592

git at osgeo.org git at osgeo.org
Fri Apr 30 15:12:30 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  4e56592f075659afa28ed1650801bdb875f62212 (commit)
      from  28bbc4af43e48e9183a58fc5f221e1a1c42722c2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4e56592f075659afa28ed1650801bdb875f62212
Author: Martin Davis <mtnclimb at gmail.com>
Date:   Fri Apr 30 15:12:15 2021 -0700

    Improve doc trajectory sections

diff --git a/doc/reference_trajectory.xml b/doc/reference_trajectory.xml
index 2b3fc0c..d25c38e 100644
--- a/doc/reference_trajectory.xml
+++ b/doc/reference_trajectory.xml
@@ -3,8 +3,7 @@
     <sect1info>
     <abstract>
 			<para>These functions support working with trajectories.
-			A trajectory is a linear geometry with a measure (M value) on each coordinate.
-			The measure values must increase along the line.
+			A trajectory is a linear geometry with increasing measures (M value) on each coordinate.
 			Spatio-temporal data can be modelled by using relative times (such as the epoch)
 			as the measure values.
 			</para>
@@ -16,9 +15,7 @@
 
 		  <refnamediv>
 			<refname>ST_IsValidTrajectory</refname>
-			<refpurpose>
-Returns <varname>true</varname> if the geometry is a valid trajectory.
-      </refpurpose>
+			<refpurpose>Tests if the geometry is a valid trajectory.</refpurpose>
 		  </refnamediv>
 
 		  <refsynopsisdiv>
@@ -79,7 +76,7 @@ NOTICE:  Measure of vertex 1 (0) not bigger than measure of vertex 0 (1)
 		  <refnamediv>
 			<refname>ST_ClosestPointOfApproach</refname>
 			<refpurpose>
-Returns the measure at which points interpolated along two trajectories are closest.
+Returns a measure at the closest point of approach of two trajectories.
       </refpurpose>
 		  </refnamediv>
 
@@ -231,7 +228,7 @@ SELECT ST_DistanceCPA(a,b) distance FROM inp;
 		  <refnamediv>
 			<refname>ST_CPAWithin</refname>
 			<refpurpose>
-Returns <varname>true</varname> if the closest point of approach of two trajectories
+Tests if the closest point of approach of two trajectories
 is within the specified distance.
       </refpurpose>
 		  </refnamediv>
@@ -242,7 +239,7 @@ is within the specified distance.
 				<funcdef>boolean <function>ST_CPAWithin</function></funcdef>
 				<paramdef><type>geometry </type> <parameter>track1</parameter></paramdef>
 				<paramdef><type>geometry </type> <parameter>track2</parameter></paramdef>
-				<paramdef><type>float8 </type> <parameter>maxdist</parameter></paramdef>
+				<paramdef><type>float8 </type> <parameter>dist</parameter></paramdef>
 			  </funcprototype>
 			</funcsynopsis>
 		  </refsynopsisdiv>
@@ -251,8 +248,7 @@ is within the specified distance.
 			<title>Description</title>
 
 			<para>
-Checks whether two moving objects have ever been within the
-specified maximum distance.
+Tests whether two moving objects have ever been closer than the specified distance.
       </para>
 			<para>
 Inputs must be valid trajectories as checked by

-----------------------------------------------------------------------

Summary of changes:
 doc/reference_trajectory.xml | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list