Changes between Version 17 and Version 18 of WKTRaster/SpecificationWorking03
- Timestamp:
- 02/23/10 11:08:47 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationWorking03
v17 v18 122 122 SELECT ST_MapAlgebra(rast1, rast2, mathExpr) FROM mytable 123 123 124 '''Open Question:''' Should ST_MapAlgebra resample rasters internally, or produce a raster that can be processed by ST_Resample? If so, variant 1 and variant 3 can be removed, and all ST_MapAlgebra results can be processed through ST_Resample, like: 124 '''Open Question:''' 125 DZ: Should ST_MapAlgebra resample rasters internally, or produce a raster that can be processed by ST_Resample? If so, variant 1 and variant 3 can be removed, and all ST_MapAlgebra results can be processed through ST_Resample, like: 125 126 ST_Resample(ST_MapAlgebra(raster, [raster,…] 'mathematical expression', integer), originx, originy, pixelsizex, pixelsizey)[[BR]] 126 127 ST_Resample(ST_MapAlgebra(raster, [raster,…] 'mathematical expression', integer), rastergrid) 128 PR: I think this would greatly contribute to simplify the API. 127 129 128 130 '''ST_Clip(raster|geometry,geometry) -> same type as first argument'''[[BR]]