pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: st_asgdalraster

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, format, options=NULL, srid=sameassource - Return the raster tile in the designated GDAL Raster format. Raster formats are one of those supported by your compiled library. Use ST_GDALRasters() to get a list of formats supported by your library.

 

Options

Option

Value

Returns

bytea

Language

c

Parameters

rast public.raster

format text

options text [] = NULL::text[]

srid integer = NULL::integer

 

Definition

CREATE OR REPLACE FUNCTION public.st_asgdalraster (
 rast public.raster,
 format text,
 options text [] = NULL::text[],
 srid integer = NULL::integer
)
RETURNS bytea AS
'$libdir/rtpostgis-2.3', 'RASTER_asGDALRaster'
LANGUAGE 'c'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION public.st_asgdalraster(rast public.raster, format text, options text [], srid integer)
IS 'args: rast, format, options=NULL, srid=sameassource - Return the raster tile in the designated GDAL Raster format. Raster formats are one of those supported by your compiled library. Use ST_GDALRasters() to get a list of formats supported by your library.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic