Schema
Owner
postgres
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 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 13/03/2014 13:23 |