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

Function: st_setscale

 

 

Schema

public

 

Owner

albenard

 

Descriptions

args: rast, x, y - Sets the X and Y size of pixels in units of coordinate reference system. Number units/pixel width/height.

 

Options

Option

Value

Returns

public.raster

Language

c

Parameters

rast public.raster

scalex double precision

scaley double precision

 

Definition

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

COMMENT ON FUNCTION public.st_setscale(rast public.raster, scalex double precision, scaley double precision)
IS 'args: rast, x, y - Sets the X and Y size of pixels in units of coordinate reference system. Number units/pixel width/height.';

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