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

Function: st_setbandnodatavalue

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, nodatavalue - Sets the value for the given band that represents no data. Band 1 is assumed if no band is specified. To mark a band as having no nodata value, set the nodata value = NULL.

 

Options

Option

Value

Returns

public.raster

Language

sql

Parameters

rast public.raster

nodatavalue double precision

 

Definition

CREATE OR REPLACE FUNCTION public.st_setbandnodatavalue (
 rast public.raster,
 nodatavalue double precision
)
RETURNS public.raster AS
$span$
SELECT public
.ST_setbandnodatavalue($1, 1, $2, FALSE)
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_setbandnodatavalue(rast public.raster, nodatavalue double precision)
IS 'args: rast, nodatavalue - Sets the value for the given band that represents no data. Band 1 is assumed if no band is specified. To mark a band as having no nodata value, set the nodata value = NULL.';

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