Schema
Owner
postgres
Descriptions
args: rast, nband, exclude_nodata_value=true - Get the values of the specified band as a 2-dimension array.
Options
Option | Value |
---|---|
Returns |
double precision [] |
Language |
sql |
Parameters |
rast public.raster nband integer exclude_nodata_value boolean = true |
Definition
CREATE OR REPLACE FUNCTION public.st_dumpvalues (
rast public.raster,
nband integer,
exclude_nodata_value boolean = true
)
RETURNS double precision [] AS
$span$
SELECT valarray FROM public.ST_dumpvalues($1, ARRAY[$2]::integer[], $3)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_dumpvalues(rast public.raster, nband integer, exclude_nodata_value boolean)
IS 'args: rast, nband, exclude_nodata_value=true - Get the values of the specified band as a 2-dimension array.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |