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

Function: st_setvalues

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, nband, columnx, rowy, newvalueset, nosetvalue, keepnodata=FALSE - Returns modified raster resulting from setting the values of a given band.

 

Options

Option

Value

Returns

public.raster

Language

sql

Parameters

rast public.raster

nband integer

x integer

y integer

newvalueset double precision []

nosetvalue double precision

keepnodata boolean = false

 

Definition

CREATE OR REPLACE FUNCTION public.st_setvalues (
 rast public.raster,
 nband integer,
 x integer,
 y integer,
 newvalueset double precision [],
 nosetvalue double precision,
 keepnodata boolean = false
)
RETURNS public.raster AS
$span$
SELECT public
._ST_setvalues($1, $2, $3, $4, $5, NULL, TRUE, $6, $7)
$span$
LANGUAGE
'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_setvalues(rast public.raster, nband integer, x integer, y integer, newvalueset double precision [], nosetvalue double precision, keepnodata boolean)
IS 'args: rast, nband, columnx, rowy, newvalueset, nosetvalue, keepnodata=FALSE - Returns modified raster resulting from setting the values of a given band.';

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