Changes between Version 134 and Version 135 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
Jul 8, 2011, 9:02:27 AM (13 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v134 v135  
    243243  -'UNION' (the extent of the union of both rasters).
    244244
    245  * In certain cases, for example when the computation extent is set to 'INTERSECTION', it is better to reduce the execution of ST_Mapalgebra(rast1, rast2) to overlapping rasters. This reduction is performed by adding a 'WHERE ST_Intersects(raster, raster)' clause to the query (to be implemented). If such a clause is not used and the rasters don't overlap an empty raster is returned. This behaviour is similar to the one of ST_Intersection(). Hence:[[BR]][[BR]]   SELECT ST_MapAlgebra(rast1, rast2, mathExpr) FROM mytable WHERE ST_Intersects(rast1, rast2)[[BR]] should be much faster and return many less empty rasters than:[[BR]][[BR]]  SELECT ST_MapAlgebra(rast1, rast2, mathExpr) FROM mytable
     245 * In certain cases, for example when the computation extent is set to 'INTERSECTION', it is better to reduce the execution of ST_Mapalgebra(rast1, rast2) to overlapping rasters. This reduction is performed by adding a 'WHERE ST_Intersects(raster, raster)' clause to the query (to be implemented). If such a clause is not used and the rasters don't overlap an empty raster is returned. This behaviour is similar to the one of ST_Intersection(). Hence:[[BR]][[BR]]
     246  SELECT ST_MapAlgebra(rast1, rast2, mathExpr) FROM mytable WHERE ST_Intersects(rast1, rast2)[[BR]][[BR]]
     247 should be much faster and return many less empty rasters than:[[BR]][[BR]]
     248  SELECT ST_MapAlgebra(rast1, rast2, mathExpr) FROM mytable
    246249
    247250 * Alternative expressions, evaluated in place of the main expression, can be provided as parameter to deal with nodata values: