From 9e9beba0c8ea59936d2eafe2a39f3f975bd4bd77 Mon Sep 17 00:00:00 2001 From: Bborie Park Date: Mon, 23 Jul 2012 17:49:50 +0000 Subject: [PATCH] Added docs for ST_Contains(raster, raster) git-svn-id: http://svn.osgeo.org/postgis/trunk@10094 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference_raster.xml | 112 ++++++++++++++++++++++++++++++++------- 1 file changed, 94 insertions(+), 18 deletions(-) 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 -- 2.40.0