Schema
Owner
postgres
Descriptions
args: rast, nband - Returns one or more bands of an existing raster as a new raster. Useful for building new rasters from existing rasters.
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
sql |
Parameters |
rast public.raster nband integer |
Definition
CREATE OR REPLACE FUNCTION public.st_band (
rast public.raster,
nband integer
)
RETURNS public.raster AS
$span$
SELECT public.ST_band($1, ARRAY[$2])
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_band(rast public.raster, nband integer)
IS 'args: rast, nband - Returns one or more bands of an existing raster as a new raster. Useful for building new rasters from existing rasters.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |