Schema
Owner
postgres
Descriptions
args: rast, bandnum=1 - Returns true if there is no band with given band number. If no band number is specified, then band number 1 is assumed.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
c |
Parameters |
rast public.raster nband integer = 1 |
Definition
CREATE OR REPLACE FUNCTION public.st_hasnoband (
rast public.raster,
nband integer = 1
)
RETURNS boolean AS
'$libdir/rtpostgis-2.2', 'RASTER_hasNoBand'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_hasnoband(rast public.raster, nband integer)
IS 'args: rast, bandnum=1 - Returns true if there is no band with given band number. If no band number is specified, then band number 1 is assumed.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |