Schema
Owner
postgres
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 13/03/2014 13:23 |