Schema
public
Owner
albenard
Descriptions
args: rast, nbands, compression=', srid=sameassource - Return the raster selected bands as a single TIFF image (byte array). If no band is specified, then will try to use all bands.
Options
Option | Value |
---|---|
Returns |
bytea |
Language |
sql |
Parameters |
rast public.raster nbands integer [] compression text srid integer = NULL::integer |
Definition
CREATE OR REPLACE FUNCTION public.st_astiff (
rast public.raster,
nbands integer [],
compression text,
srid integer = NULL::integer
)
RETURNS bytea AS
$span$
SELECT st_astiff(st_band($1, $2), $3, $4)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_astiff(rast public.raster, nbands integer [], compression text, srid integer)
IS 'args: rast, nbands, compression='', srid=sameassource - Return the raster selected bands as a single TIFF image (byte array). If no band is specified, then will try to use all bands.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |