From 67ffd6f4a186738201fdbfa386db39eb23e92ceb Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Sat, 3 Oct 2015 18:28:58 +0000 Subject: [PATCH] #2603: add weighted and mask args git-svn-id: http://svn.osgeo.org/postgis/trunk@14178 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference_raster.xml | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml index 0c5fd340c..d102126e8 100644 --- a/doc/reference_raster.xml +++ b/doc/reference_raster.xml @@ -9125,8 +9125,7 @@ FROM ( - - + raster ST_MapAlgebra rastbandarg[] rastbandargset @@ -9179,6 +9178,18 @@ FROM ( integer distancey=0 text[] VARIADIC userargs=NULL + + + raster ST_MapAlgebra + nband integer + regprocedure callbackfunc + float8[] mask + boolean weighted + text pixeltype=NULL + text extenttype=INTERSECTION + raster customextent=NULL + text[] VARIADIC userargs=NULL + @@ -9237,6 +9248,24 @@ CREATE OR REPLACE FUNCTION sample_callbackfunc(value double precision[][][], pos + + + mask + + + An n-dimenional array (matrix) of numbers used to set pixels in raster to nodata. + + + + + + weighted + + + boolean (true/false) to denote if a mask should be weighted or not (only applies to proto that takes a mask). + + + pixeltype @@ -9320,6 +9349,7 @@ CREATE OR REPLACE FUNCTION sample_callbackfunc(value double precision[][][], pos Variant 4 operate upon two rasters with one band per raster. See example Variant 4. + Availability: 2.2.0: Ability to add a mask Availability: 2.1.0 @@ -9503,6 +9533,7 @@ WHERE t1.rid = 1 + See Also -- 2.40.0