pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_histogram

 

 

Schema

public

 

Owner

postgres

 

Descriptions

args: rastertable, rastercolumn, nband=1, exclude_nodata_value=true, bins=autocomputed, width=NULL, right=false - Returns a set of record summarizing a raster or raster coverage data distribution separate bin ranges. Number of bins are autocomputed if not specified.

 

Options

Option

Value

Returns

Set of record

Language

sql

Parameters

rastertable text

rastercolumn text

nband integer = 1

exclude_nodata_value boolean = true

bins integer = 0

width double precision [] = NULL::double precision[]

right boolean = false

out min double precision

out max double precision

out count bigint

out percent double precision

 

Definition

CREATE OR REPLACE FUNCTION public.st_histogram (
 rastertable text,
 rastercolumn text,
 nband integer = 1,
 exclude_nodata_value boolean = true,
 bins integer = 0,
 width double precision [] = NULL::double precision[],
 "right" boolean = false,
 out min double precision,
 out max double precision,
 out count bigint,
 out percent double precision
)
RETURNS SETOF record AS
$span$
SELECT public
._ST_histogram($1, $2, $3, $4, 1, $5, $6, $7)
$span$
LANGUAGE
'sql'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100 ROWS 1000;

COMMENT ON FUNCTION public.st_histogram(rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, bins integer, width double precision [], "right" boolean, out min double precision, out max double precision, out count bigint, out percent double precision)
IS 'args: rastertable, rastercolumn, nband=1, exclude_nodata_value=true, bins=autocomputed, width=NULL, right=false - Returns a set of record summarizing a raster or raster coverage data distribution separate bin ranges. Number of bins are autocomputed if not specified.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic