Schema
Owner
postgres
Descriptions
args: OUT idx, OUT short_name, OUT long_name, OUT create_options - Returns a list of raster formats supported by your lib gdal. These are the formats you can output your raster using ST_AsGDALRaster.
Options
Option | Value |
---|---|
Returns |
Set of record |
Language |
c |
Parameters |
out idx integer out short_name text out long_name text out create_options text |
Definition
CREATE OR REPLACE FUNCTION public.st_gdaldrivers (
out idx integer,
out short_name text,
out long_name text,
out create_options text
)
RETURNS SETOF record AS
'$libdir/rtpostgis-2.3', 'RASTER_getGDALDrivers'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1 ROWS 1000;
COMMENT ON FUNCTION public.st_gdaldrivers(out idx integer, out short_name text, out long_name text, out create_options text)
IS 'args: OUT idx, OUT short_name, OUT long_name, OUT create_options - Returns a list of raster formats supported by your lib gdal. These are the formats you can output your raster using ST_AsGDALRaster.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |