[postgis-tickets] [SCM] PostGIS branch stable-2.5 updated. 2.5.4-27-g88f8184
git at osgeo.org
git at osgeo.org
Sat Aug 1 18:13:35 PDT 2020
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-2.5 has been updated
via 88f818437f5a4f291dfe41ebb1bb08be27b2fb11 (commit)
from 5e2440dc19a676523e8b6c99c9afdf777311bc63 (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 88f818437f5a4f291dfe41ebb1bb08be27b2fb11
Author: Regina Obe <lr at pcorp.us>
Date: Sat Aug 1 21:13:30 2020 -0400
Fix ST_Neighborhood docs closes #3933 for PostGIS 2.5.5
diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml
index c4858c7..9b7d466 100644
--- a/doc/reference_raster.xml
+++ b/doc/reference_raster.xml
@@ -5133,7 +5133,7 @@ FROM (
st_neighborhood
---------------------------------
- {{NULL,1,1},{1,1,NULL},{1,1,1}}
+{{NULL,1,1},{1,1,1},{1,NULL,1}}
</programlisting>
<programlisting>
@@ -5168,8 +5168,7 @@ FROM (
-- exclude_nodata_value = FALSE
SELECT
ST_Neighborhood(rast, 3, 3, 1, 1, false)
-FROM (
- ST_SetValues(
+FROM ST_SetValues(
ST_AddBand(
ST_MakeEmptyRaster(5, 5, -2, 2, 1, -1, 0, 0, 0),
'8BUI'::text, 1, 0
@@ -5183,11 +5182,10 @@ FROM (
]::double precision[],
1
) AS rast
-) AS foo
st_neighborhood
---------------------------
- {{1,0,1},{1,1,1},{0,1,1}}
+{{1,1,0},{0,1,1},{1,1,1}}
</programlisting>
</refsection>
-----------------------------------------------------------------------
Summary of changes:
doc/reference_raster.xml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list