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

Function: st_dumpvalues

 

 

Schema

public

 

Owner

albenard

 

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 26/02/2014 11:51
Previous topic Chapter index Next topic