Schema
Owner
postgres
Descriptions
There is no description for function st_transform
Options
Option | Value |
---|---|
Returns |
public.raster |
Language |
sql |
Parameters |
rast public.raster srid integer scalexy double precision algorithm text = 'NearestNeighbour'::text maxerr double precision = 0.125 |
Definition
CREATE OR REPLACE FUNCTION public.st_transform (
rast public.raster,
srid integer,
scalexy double precision,
algorithm text = 'NearestNeighbour'::text,
maxerr double precision = 0.125
)
RETURNS public.raster AS
$span$
SELECT _st_gdalwarp($1, $4, $5, $2, $3, $3)
$span$
LANGUAGE 'sql'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |