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

Function: st_setvalue

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, columnx, rowy, newvalue - Returns modified raster resulting from setting the value of a given band in a given columnx, rowy pixel or the pixels that intersect a particular geometry. Band numbers start at 1 and assumed to be 1 if not specified.

 

Options

Option

Value

Returns

public.raster

Language

sql

Parameters

rast public.raster

x integer

y integer

newvalue double precision

 

Definition

CREATE OR REPLACE FUNCTION public.st_setvalue (
 rast public.raster,
 x integer,
 y integer,
 newvalue double precision
)
RETURNS public.raster AS
$span$
SELECT public
.ST_setvalue($1, 1, $2, $3, $4)
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_setvalue(rast public.raster, x integer, y integer, newvalue double precision)
IS 'args: rast, columnx, rowy, newvalue - Returns modified raster resulting from setting the value of a given band in a given columnx, rowy pixel or the pixels that intersect a particular geometry. Band numbers start at 1 and assumed to be 1 if not specified.';

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