Schema
Owner
postgres
Descriptions
args: rast, nband, width, height, padwithnodata=FALSE, nodataval=NULL - Returns a set of rasters resulting from the split of the input raster based upon the desired dimensions of the output rasters.
Options
Option | Value |
---|---|
Returns |
Set of public.raster |
Language |
sql |
Parameters |
rast public.raster nband integer width integer height integer padwithnodata boolean = false nodataval double precision = NULL::double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_tile (
rast public.raster,
nband integer,
width integer,
height integer,
padwithnodata boolean = false,
nodataval double precision = NULL::double precision
)
RETURNS SETOF public.raster AS
$span$
SELECT public._ST_tile($1, $3, $4, ARRAY[$2]::integer[], $5, $6)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100 ROWS 1000;
COMMENT ON FUNCTION public.st_tile(rast public.raster, nband integer, width integer, height integer, padwithnodata boolean, nodataval double precision)
IS 'args: rast, nband, width, height, padwithnodata=FALSE, nodataval=NULL - Returns a set of rasters resulting from the split of the input raster based upon the desired dimensions of the output rasters.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |