Schema
Owner
postgres
Descriptions
args: rast, nband, columnx, rowy, newvalueset, noset=NULL, 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 [] noset boolean [] = NULL::boolean[] keepnodata boolean = false |
Definition
CREATE OR REPLACE FUNCTION public.st_setvalues (
rast public.raster,
nband integer,
x integer,
y integer,
newvalueset double precision [],
noset boolean [] = NULL::boolean[],
keepnodata boolean = false
)
RETURNS public.raster AS
$span$
SELECT _st_setvalues($1, $2, $3, $4, $5, $6, FALSE, NULL, $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 [], noset boolean [], keepnodata boolean)
IS 'args: rast, nband, columnx, rowy, newvalueset, noset=NULL, 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 13/03/2014 13:23 |