From b53bcba1ba5a42077fe7591f19a34e58a466f9e8 Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Tue, 7 Jun 2011 07:10:27 +0000 Subject: [PATCH] document histogram type git-svn-id: http://svn.osgeo.org/postgis/trunk@7328 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference_raster.xml | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml index 64068e6c7..a10376059 100644 --- a/doc/reference_raster.xml +++ b/doc/reference_raster.xml @@ -288,6 +288,37 @@ VALUES (1, + + + histogram + A composite type used as record output of the ST_Histogram and ST_ApproxHistogram functions. + + + Description + A composite type used as record outputs of the ST_ApproxHistogram functions. Note that depending on exclude_nodata_value of function, may or may not contain nodata pixels. + Each histogram record in results corresponds to a bin for a selected raster band. + + + min double precision + minimum pixel value in this bin + + + max double precision + Maximum pixel value in this bin. + + + count integer + count of pixels in this bin. + + + + + + See Also + + + + raster @@ -3530,7 +3561,7 @@ FROM (SELECT rid, ST_Histogram(rast, 2,6,ARRAY[0.5,1,4,100,5]) As stats See Also - , + , , -- 2.50.1