Schema
Owner
postgres
Descriptions
args: rast, nbands, options, 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 [] options text [] = NULL::text[] srid integer = NULL::integer |
Definition
CREATE OR REPLACE FUNCTION public.st_astiff (
rast public.raster,
nbands integer [],
options text [] = NULL::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 [], options text [], srid integer)
IS 'args: rast, nbands, options, 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 07/12/2018 13:23 |