[postgis-tickets] [SCM] PostGIS branch stable-2.5 updated. 2.5.4-3-gcf21eef

git at osgeo.org git at osgeo.org
Fri Feb 28 14:20:54 PST 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  cf21eefc290841a88e7850345521bebbbfdc96bf (commit)
      from  ef4e0a7f4a3d289ce651c6170d94fc104c3e9f4c (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 cf21eefc290841a88e7850345521bebbbfdc96bf
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Fri Feb 28 14:17:26 2020 -0800

    document ST_MinPossibleValue
    reference #4212

diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml
index 16c00ef..c4858c7 100644
--- a/doc/reference_raster.xml
+++ b/doc/reference_raster.xml
@@ -4186,6 +4186,51 @@ WHERE rid = 2;
 			</refsection>
 		</refentry>
 
+		<refentry id="ST_MinPossibleValue">
+			<refnamediv>
+				<refname>ST_MinPossibleValue</refname>
+				<refpurpose>Returns the minimum value this pixeltype can store.</refpurpose>
+			</refnamediv>
+
+			<refsynopsisdiv>
+				<funcsynopsis>
+				  <funcprototype>
+					<funcdef>integer <function>ST_MinPossibleValue</function></funcdef>
+					<paramdef><type>text </type> <parameter>pixeltype</parameter></paramdef>
+				  </funcprototype>
+				</funcsynopsis>
+			</refsynopsisdiv>
+
+			<refsection>
+				<title>Description</title>
+				<para>Returns the minimum value this pixeltype can store.</para>
+			</refsection>
+
+			<refsection>
+				<title>Examples</title>
+
+					<programlisting>SELECT ST_MinPossibleValue('16BSI');
+
+ st_minpossiblevalue
+---------------------
+              -32768
+
+
+SELECT ST_MinPossibleValue('8BUI');
+
+ st_minpossiblevalue
+---------------------
+                   0
+				</programlisting>
+
+			</refsection>
+
+			<refsection>
+				<title>See Also</title>
+				<para><xref linkend="RT_ST_BandPixelType" /></para>
+			</refsection>
+		</refentry>
+
 		<refentry id="RT_ST_HasNoBand">
 			<refnamediv>
 				<refname>ST_HasNoBand</refname>

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

Summary of changes:
 doc/reference_raster.xml | 45 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list