[SCM] PostGIS branch stable-3.4 updated. 3.4.1-4-g289e006d4
git at osgeo.org
git at osgeo.org
Sat Nov 25 15:27:22 PST 2023
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, stable-3.4 has been updated
via 289e006d437f5548be5aa9eb3f5b5fe9cd58e725 (commit)
from 4db644f7fc7e3c1def2226c2be168af14feebf3d (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 289e006d437f5548be5aa9eb3f5b5fe9cd58e725
Author: Regina Obe <lr at pcorp.us>
Date: Sat Nov 25 18:27:17 2023 -0500
Fix ST_LineExtend example, closes #5594 for PostGIS 3.4.2
diff --git a/doc/reference_editor.xml b/doc/reference_editor.xml
index 1b6edf173..c0989a4ae 100644
--- a/doc/reference_editor.xml
+++ b/doc/reference_editor.xml
@@ -1275,12 +1275,12 @@ SELECT ST_AsText(ST_Multi('POLYGON ((10 30, 30 30, 30 10, 10 10, 10 30))'));
</refsection>
<refsection>
- <title>Example: Projected point at 100,000 meters and bearing 45 degrees </title>
+ <title>Example: Extends a line 5 units forward and 6 units backward</title>
<programlisting>
SELECT ST_AsText(ST_LineExtend('LINESTRING(0 0, 0 10)'::geometry, 5, 6));
--------------------------------------------
-LINESTRING(0 -5,0 0,0 10,0 15)
+LINESTRING(0 -6,0 0,0 10,0 15)
</programlisting>
</refsection>
-----------------------------------------------------------------------
Summary of changes:
doc/reference_editor.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list