Schema
public
Owner
albenard
Descriptions
args: rast, rotation - Set the rotation of the raster in radian.
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
c |
Parameters |
rast public.raster rotation double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_setrotation (
rast public.raster,
rotation double precision
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.3', 'RASTER_setRotation'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_setrotation(rast public.raster, rotation double precision)
IS 'args: rast, rotation - Set the rotation of the raster in radian.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |