[postgis-tickets] [SCM] PostGIS branch stable-2.4 updated. be698e6f34e8fb876c36aa863517700665ea1fac
git at osgeo.org
git at osgeo.org
Fri Feb 28 14:21:16 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.4 has been updated
via be698e6f34e8fb876c36aa863517700665ea1fac (commit)
from 8f52e7b04add903b70daec84f5886319877a54ce (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 be698e6f34e8fb876c36aa863517700665ea1fac
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 3298e2e..7cddeb3 100644
--- a/doc/reference_raster.xml
+++ b/doc/reference_raster.xml
@@ -4034,6 +4034,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