From: Regina Obe Date: Tue, 27 Sep 2011 02:09:29 +0000 (+0000) Subject: get rid of obslete protos for ST_Intersects and revise description to describe new... X-Git-Tag: 2.0.0alpha1~957 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54c6c3c60000a450459808219a0acdbcae721002;p=postgis get rid of obslete protos for ST_Intersects and revise description to describe new semantics of raster st_intersects git-svn-id: http://svn.osgeo.org/postgis/trunk@7897 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_raster.xml b/doc/reference_raster.xml index 4f3bcc3c2..0e5b84127 100644 --- a/doc/reference_raster.xml +++ b/doc/reference_raster.xml @@ -5656,8 +5656,8 @@ a_rid | b_rid | overleft ST_Intersects - If exclude_nodata_value is omitted returns TRUE only if rast pixel in a band with non-nodata band value intersects - with a geometry/raster. If band is not specified it defaults to 1. If exclude_nodata_value is set to false then nodata band values that intersect also return true. + If band numbers are omitted only considers convex hull of raster. Returns true only if rast pixel in a band with non-nodata band value intersects + with a geometry/raster. @@ -5716,79 +5716,7 @@ a_rid | b_rid | overleft band - - - boolean ST_Intersects - - raster - rast - - - boolean - exclude_nodata_value - - - geometry - geommin - - - - - boolean ST_Intersects - - geometry - geommin - - - raster - rast - - - boolean - exclude_nodata_value - - - - - boolean ST_Intersects - - geometry - geommin - - - raster - rast - - - integer - band - - - boolean - exclude_nodata_value - - - - - boolean ST_Intersects - - raster - rast - - - integer - band - - - boolean - exclude_nodata_value - - - geometry - geommin - - - + boolean ST_Intersects @@ -5814,8 +5742,7 @@ a_rid | b_rid | overleft Description - Returns true if the geometry intersects with the raster. Nodata values are taken into account so that if the geometry intersects only with nodata values, the function returns false. - exclude_nodata_value may modify this behavior: if set to false, nodata value are not taken into account and the function returns true as soon as the geometry intersects with the convex hull of the raster. + Returns true if the geometry intersects with the raster. Nodata values are taken into account so that if the geometry intersects only with nodata values, the function returns false. If no bands are specified only convex hull of raster is used (nodata values are not considered). This operand will make use of any indexes that may be available on the geometries / rasters.