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

Function: st_rotation

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast - Returns the rotation of the raster in radian.

 

Options

Option

Value

Returns

double precision

Language

sql

Parameters

public.raster

 

Definition

CREATE OR REPLACE FUNCTION public.st_rotation (
 public.raster
)
RETURNS double precision AS
$span$
SELECT
( public.ST_Geotransform($1)).theta_i
$span$
LANGUAGE
'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION public.st_rotation(public.raster)
IS 'args: rast - Returns 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
Previous topic Chapter index Next topic