Schema
Owner
postgres
Descriptions
args: rast, nband, exclude_nodata_value, bins, right - 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 |
rast public.raster nband integer exclude_nodata_value boolean bins integer right boolean out min double precision out max double precision out count bigint out percent double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_histogram (
rast public.raster,
nband integer,
exclude_nodata_value boolean,
bins integer,
"right" boolean,
out min double precision,
out max double precision,
out count bigint,
out percent double precision
)
RETURNS SETOF record AS
$span$
SELECT min, max, count, percent FROM public._ST_histogram($1, $2, $3, 1, $4, NULL, $5)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100 ROWS 1000;
COMMENT ON FUNCTION public.st_histogram(rast public.raster, nband integer, exclude_nodata_value boolean, bins integer, "right" boolean, out min double precision, out max double precision, out count bigint, out percent double precision)
IS 'args: rast, nband, exclude_nodata_value, bins, right - 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 07/12/2018 13:23 |