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

Function: st_setskew

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, skewx, skewy - Sets the georeference X and Y skew (or rotation parameter). If only one is passed in, sets X and Y to the same value.

 

Options

Option

Value

Returns

public.raster

Language

c

Parameters

rast public.raster

skewx double precision

skewy double precision

 

Definition

CREATE OR REPLACE FUNCTION public.st_setskew (
 rast public.raster,
 skewx double precision,
 skewy double precision
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.3', 'RASTER_setSkewXY'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST
1;

COMMENT ON FUNCTION public.st_setskew(rast public.raster, skewx double precision, skewy double precision)
IS 'args: rast, skewx, skewy - Sets the georeference X and Y skew (or rotation parameter). If only one is passed in, sets X and Y to the same value.';

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