From: Bborie Park Date: Mon, 23 Jul 2012 17:49:50 +0000 (+0000) Subject: Added docs for ST_Contains(raster, raster) X-Git-Tag: 2.1.0beta2~770 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e9beba0c8ea59936d2eafe2a39f3f975bd4bd77;p=postgis Added docs for ST_Contains(raster, raster) git-svn-id: http://svn.osgeo.org/postgis/trunk@10094 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml index 4cf3f643d..5a6d641b6 100644 --- a/doc/reference_raster.xml +++ b/doc/reference_raster.xml @@ -8736,19 +8736,19 @@ a_rid | b_rid | overleft boolean ST_Intersects raster - rasta + rastA integer - nbanda + nbandA raster - rastb + rastB integer - nbandb + nbandB @@ -8756,11 +8756,11 @@ a_rid | b_rid | overleft boolean ST_Intersects raster - rasta + rastA raster - rastb + rastB @@ -8821,19 +8821,19 @@ a_rid | b_rid | overleft boolean ST_Overlaps raster - rasta + rastA integer - nbanda + nbandA raster - rastb + rastB integer - nbandb + nbandB @@ -8841,11 +8841,11 @@ a_rid | b_rid | overleft boolean ST_Overlaps raster - rasta + rastA raster - rastb + rastB @@ -8897,19 +8897,19 @@ a_rid | b_rid | overleft boolean ST_Touches raster - rasta + rastA integer - nbanda + nbandA raster - rastb + rastB integer - nbandb + nbandB @@ -8917,11 +8917,11 @@ a_rid | b_rid | overleft boolean ST_Touches raster - rasta + rastA raster - rastb + rastB @@ -8959,6 +8959,82 @@ a_rid | b_rid | overleft + + + ST_Contains + + Return true if no points of raster rastB lie in the exterior of raster rastA and at least one point of the interior of rastB lies in the interior of rastA. If the band number is not provided (or set to NULL), only the convex hull of the raster is considered in the test. If the band number is provided, only those pixels with value (not NODATA) are considered in the test. + + + + + + + boolean ST_Contains + + raster + rastA + + + integer + nbandA + + + raster + rastB + + + integer + nbandB + + + + + boolean ST_Contains + + raster + rastA + + + raster + rastB + + + + + + + + Description + + + Raster rastA contains rastB if and only if no points of rastB lie in the exterior of rastA and at least one point of the interior of rastB lies in the interior of rastA. If the band number is not provided (or set to NULL), only the convex hull of the raster is considered in the test. If the band number is provided, only those pixels with value (not NODATA) are considered in the test. + + + + + This operand will make use of any indexes that may be available on the rasters. + + + + Availability: 2.1.0 + + + + Examples + + +-- needs an example + + + + See Also + + + + + + ST_SameAlignment