Schema
Owner
postgres
Descriptions
args: rast, bandnum=1 - Returns system file path to a band stored in file system. If no bandnum specified, 1 is assumed.
Options
Option | Value |
---|---|
Returns |
text |
Language |
c |
Parameters |
rast public.raster band integer = 1 |
Definition
CREATE OR REPLACE FUNCTION public.st_bandpath (
rast public.raster,
band integer = 1
)
RETURNS text AS
'$libdir/rtpostgis-2.2', 'RASTER_getBandPath'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_bandpath(rast public.raster, band integer)
IS 'args: rast, bandnum=1 - Returns system file path to a band stored in file system. If no bandnum specified, 1 is assumed.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |