Schema
Owner
postgres
Descriptions
args: rast, x, y - Sets the value of the upper left corner of the pixel to projected X and Y coordinates.
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
c |
Parameters |
rast public.raster upperleftx double precision upperlefty double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_setupperleft (
rast public.raster,
upperleftx double precision,
upperlefty double precision
)
RETURNS public.raster AS
'$libdir/rtpostgis-2.2', 'RASTER_setUpperLeftXY'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_setupperleft(rast public.raster, upperleftx double precision, upperlefty double precision)
IS 'args: rast, x, y - Sets the value of the upper left corner of the pixel to projected X and Y coordinates.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |