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

postgres

 

Descriptions

args: rast, band, nodatavalue, forcechecking=false - 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

c

Parameters

rast public.raster

band integer

nodatavalue double precision

forcechecking boolean = false

 

Definition

CREATE OR REPLACE FUNCTION public.st_setbandnodatavalue (
 rast public.raster,
 band integer,
 nodatavalue double precision,
 forcechecking boolean = false
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.3', 'RASTER_setBandNoDataValue'
LANGUAGE 'c'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION public.st_setbandnodatavalue(rast public.raster, band integer, nodatavalue double precision, forcechecking boolean)
IS 'args: rast, band, nodatavalue, forcechecking=false - 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