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, bandnum, 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

c

Parameters

rast public.raster

band integer

x integer

y integer

newvalue double precision

 

Definition

CREATE OR REPLACE FUNCTION public.st_setvalue (
 rast public.raster,
 band integer,
 x integer,
 y integer,
 newvalue double precision
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.3', 'RASTER_setPixelValue'
LANGUAGE 'c'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION public.st_setvalue(rast public.raster, band integer, x integer, y integer, newvalue double precision)
IS 'args: rast, bandnum, 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