Schema
Owner
postgres
Descriptions
args: rast, skewxy - 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 skew double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_setskew (
rast public.raster,
skew double precision
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.3', 'RASTER_setSkew'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_setskew(rast public.raster, skew double precision)
IS 'args: rast, skewxy - 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 13/03/2014 13:23 |