From: Regina Obe Date: Sat, 11 Jun 2011 00:43:32 +0000 (+0000) Subject: document raster ST_Transform function. Will provide examples later. X-Git-Tag: 2.0.0alpha1~1451 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17cb9e96943cc47ee42cba6fba2715d89c0ea37f;p=postgis document raster ST_Transform function. Will provide examples later. git-svn-id: http://svn.osgeo.org/postgis/trunk@7370 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml index 1e3423d2f..e06bbf284 100644 --- a/doc/reference_raster.xml +++ b/doc/reference_raster.xml @@ -3171,6 +3171,46 @@ WHERE rid = 2; , + + + + ST_Transform + Reprojects a raster in a known spatial reference system to another known spatial reference system using specified resampling algorithm. + Uses NearestNeighbor if no algorithm is specified Options: NearestNeighbor, Bilinear, Cubic, CubicSpline, Lanczos. + + + + + + raster ST_Transform + raster rast + integer srid + text algorithm=NearestNeighbor + double precision maxerr=0.125 + + + + + + Description + + Reprojects a raster in a known spatial reference system to another known spatial reference system using specified pixel warping algorithm. + Uses 'NearestNeighbor' if no algorithm is specified and maxerror percent of 0.125 if no maxerr is specified. + Algorithm options are: 'NearestNeighbor', 'Bilinear', 'Cubic', 'CubicSpline', and 'Lanczos'. Refer to: GDAL Warp resampling methods for more details. + Availability: 2.0.0 Requires GDAL 1.6.1+ + + + + Examples + + -- TO DO -- + + + + See Also + , + +