[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-99-g1b24b38
git at osgeo.org
git at osgeo.org
Fri Feb 19 10:07:53 PST 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 1b24b38a0d1bd7c1b34af27871505784291e6952 (commit)
from a39944c37f1b1b6efa3e90c6f51f1d9f016d4f53 (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 1b24b38a0d1bd7c1b34af27871505784291e6952
Author: Martin Davis <mtnclimb at gmail.com>
Date: Fri Feb 19 10:09:40 2021 -0800
Change docs to use ST_Point where possible
diff --git a/doc/reference_operator.xml b/doc/reference_operator.xml
index 26c7166..eb248ad 100644
--- a/doc/reference_operator.xml
+++ b/doc/reference_operator.xml
@@ -141,7 +141,7 @@ FROM ( VALUES
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakePoint(1,1) && ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(2,2)) AS overlaps;
+ <programlisting>SELECT ST_Point(1,1) && ST_MakeBox2D(ST_Point(0,0), ST_Point(2,2)) AS overlaps;
overlaps
----------
@@ -207,7 +207,7 @@ FROM ( VALUES
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(2,2)) && ST_MakePoint(1,1) AS overlaps;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(0,0), ST_Point(2,2)) && ST_Point(1,1) AS overlaps;
overlaps
----------
@@ -273,7 +273,7 @@ FROM ( VALUES
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(2,2)) && ST_MakeBox2D(ST_MakePoint(1,1), ST_MakePoint(3,3)) AS overlaps;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(0,0), ST_Point(2,2)) && ST_MakeBox2D(ST_Point(1,1), ST_Point(3,3)) AS overlaps;
overlaps
----------
@@ -1223,7 +1223,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_Buffer(ST_GeomFromText('POINT(2 2)'), 1) @ ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(5,5)) AS is_contained;
+ <programlisting>SELECT ST_Buffer(ST_GeomFromText('POINT(2 2)'), 1) @ ST_MakeBox2D(ST_Point(0,0), ST_Point(5,5)) AS is_contained;
is_contained
--------------
@@ -1289,7 +1289,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(2,2), ST_MakePoint(3,3)) @ ST_Buffer(ST_GeomFromText('POINT(1 1)'), 10) AS is_contained;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(2,2), ST_Point(3,3)) @ ST_Buffer(ST_GeomFromText('POINT(1 1)'), 10) AS is_contained;
is_contained
--------------
@@ -1355,7 +1355,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(2,2), ST_MakePoint(3,3)) @ ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(5,5)) AS is_contained;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(2,2), ST_Point(3,3)) @ ST_MakeBox2D(ST_Point(0,0), ST_Point(5,5)) AS is_contained;
is_contained
--------------
@@ -1627,7 +1627,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_Buffer(ST_GeomFromText('POINT(1 1)'), 10) ~ ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(2,2)) AS contains;
+ <programlisting>SELECT ST_Buffer(ST_GeomFromText('POINT(1 1)'), 10) ~ ST_MakeBox2D(ST_Point(0,0), ST_Point(2,2)) AS contains;
contains
----------
@@ -1693,7 +1693,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(5,5)) ~ ST_Buffer(ST_GeomFromText('POINT(2 2)'), 1) AS contains;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(0,0), ST_Point(5,5)) ~ ST_Buffer(ST_GeomFromText('POINT(2 2)'), 1) AS contains;
contains
----------
@@ -1759,7 +1759,7 @@ FROM
<refsection>
<title>Examples</title>
- <programlisting>SELECT ST_MakeBox2D(ST_MakePoint(0,0), ST_MakePoint(5,5)) ~ ST_MakeBox2D(ST_MakePoint(2,2), ST_MakePoint(3,3)) AS contains;
+ <programlisting>SELECT ST_MakeBox2D(ST_Point(0,0), ST_Point(5,5)) ~ ST_MakeBox2D(ST_Point(2,2), ST_Point(3,3)) AS contains;
contains
----------
-----------------------------------------------------------------------
Summary of changes:
doc/reference_operator.xml | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list