[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-721-g2eb420ed4
git at osgeo.org
git at osgeo.org
Thu Apr 14 09:04:54 PDT 2022
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 2eb420ed4f3defb28e496330dc03520f41b7680a (commit)
from 88c205f24beb22c37e7eecb2caefaa443db82df9 (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 2eb420ed4f3defb28e496330dc03520f41b7680a
Author: Martin Davis <mtnclimb at gmail.com>
Date: Thu Apr 14 09:04:49 2022 -0700
Fix doc ST_PointM typo, descriptions
diff --git a/doc/reference_constructor.xml b/doc/reference_constructor.xml
index 8a4f19e2d..ef1c1bfff 100644
--- a/doc/reference_constructor.xml
+++ b/doc/reference_constructor.xml
@@ -644,7 +644,7 @@ FROM provinces p;
<refnamediv>
<refname>ST_Point</refname>
- <refpurpose>Creates a Point with the given coordinate values. Alias for ST_MakePoint.</refpurpose>
+ <refpurpose>Creates a Point with X, Y and SRID values.</refpurpose>
</refnamediv>
<refsynopsisdiv>
@@ -668,7 +668,7 @@ FROM provinces p;
<refsection>
<title>Description</title>
- <para>Returns an Point with the given X and Y coordinate values. This is the SQL-MM alias for <xref linkend="ST_MakePoint" /> that takes just X and Y.</para>
+ <para>Returns a Point with the given X and Y coordinate values. This is the SQL-MM equivalent for <xref linkend="ST_MakePoint" /> that takes just X and Y.</para>
<note><para>For geodetic coordinates, <varname>X</varname> is longitude and <varname>Y</varname> is latitude</para></note>
@@ -718,7 +718,7 @@ SELECT ST_Transform(ST_SetSRID( ST_Point( 3637510, 3014852 ), 2273), 4326)::geog
<refentry id="ST_PointZ">
<refnamediv>
<refname>ST_PointZ</refname>
- <refpurpose>Creates a Point with the given coordinate and SRID values.</refpurpose>
+ <refpurpose>Creates a Point with X, Y, Z and SRID values.</refpurpose>
</refnamediv>
<refsynopsisdiv>
@@ -755,13 +755,13 @@ SELECT ST_Transform(ST_SetSRID( ST_Point( 3637510, 3014852 ), 2273), 4326)::geog
<refentry id="ST_PointM">
<refnamediv>
<refname>ST_PointM</refname>
- <refpurpose>Creates a Point with the given coordinate and SRID values.</refpurpose>
+ <refpurpose>Creates a Point with X, Y, M and SRID values.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis>
<funcprototype>
- <funcdef>geometry <function>ST_PointZ</function></funcdef>
+ <funcdef>geometry <function>ST_PointM</function></funcdef>
<paramdef><type>float</type> <parameter>x</parameter></paramdef>
<paramdef><type>float</type> <parameter>y</parameter></paramdef>
<paramdef><type>float</type> <parameter>m</parameter></paramdef>
@@ -793,7 +793,7 @@ SELECT ST_Transform(ST_SetSRID( ST_Point( 3637510, 3014852 ), 2273), 4326)::geog
<refentry id="ST_PointZM">
<refnamediv>
<refname>ST_PointZM</refname>
- <refpurpose>Creates a Point with the given coordinate and SRID values.</refpurpose>
+ <refpurpose>Creates a Point with X, Y, Z, M and SRID values.</refpurpose>
</refnamediv>
<refsynopsisdiv>
-----------------------------------------------------------------------
Summary of changes:
doc/reference_constructor.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list