Schema
Owner
postgres
Descriptions
args: rast, skewxy, algorithm=NearestNeighbour, maxerr=0.125 - Resample a raster by adjusting only its skew (or rotation parameters). New pixel values are computed using the NearestNeighbor (english or american spelling), Bilinear, Cubic, CubicSpline or Lanczos resampling algorithm. Default is NearestNeighbor.
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
sql |
Parameters |
rast public.raster skewxy double precision algorithm text = 'NearestNeighbour'::text maxerr double precision = 0.125 |
Definition
CREATE OR REPLACE FUNCTION public.st_reskew (
rast public.raster,
skewxy double precision,
algorithm text = 'NearestNeighbour'::text,
maxerr double precision = 0.125
)
RETURNS public.raster AS
$span$
SELECT _st_gdalwarp($1, $3, $4, NULL, 0, 0, NULL, NULL, $2, $2)
$span$
LANGUAGE 'sql'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_reskew(rast public.raster, skewxy double precision, algorithm text, maxerr double precision)
IS 'args: rast, skewxy, algorithm=NearestNeighbour, maxerr=0.125 - Resample a raster by adjusting only its skew (or rotation parameters). New pixel values are computed using the NearestNeighbor (english or american spelling), Bilinear, Cubic, CubicSpline or Lanczos resampling algorithm. Default is NearestNeighbor.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |