Schema
Owner
postgres
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 07/12/2018 13:23 |