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=NULL, exclude_nodata_value=true - Get the values of the specified band as a 2-dimension array.

 

Options

Option

Value

Returns

Set of record

Language

c

Parameters

rast public.raster

nband integer [] = NULL::integer[]

exclude_nodata_value boolean = true

out nband integer

out valarray double precision []

 

Definition

CREATE OR REPLACE FUNCTION public.st_dumpvalues (
 rast public.raster,
 nband integer [] = NULL::integer[],
 exclude_nodata_value boolean = true,
 out nband integer,
 out valarray double precision []
)
RETURNS SETOF record AS
'$libdir/rtpostgis-2.3', 'RASTER_dumpValues'
LANGUAGE 'c'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1 ROWS 1000;

COMMENT ON FUNCTION public.st_dumpvalues(rast public.raster, nband integer [], exclude_nodata_value boolean, out nband integer, out valarray double precision [])
IS 'args: rast, nband=NULL, 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