Changes between Version 43 and Version 44 of WKTRaster/SpecificationWorking02
- Timestamp:
- 09/21/10 09:01:46 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationWorking02
v43 v44 49 49 '''Variants''' 50 50 51 First series of variant with band specifier.51 The first series of variant allow specifying the number of the band used in the expression. 52 52 53 53 1) ST_MapAlgebra(rast raster, band integer, expression text, nodatavalueexpr text, pixeltype text) … … 59 59 4) ST_MapAlgebra(rast raster, band integer, expression text) 60 60 61 Second series of variant without band specifier (band number defaults to 1).61 The second series of variant default the band to 1. 62 62 63 63 5) ST_MapAlgebra(rast raster, expression text, nodatavalueexpr text, pixeltype text) … … 189 189 '''Variants''' 190 190 191 191 The first series of variant add the new band at the specified index. 192 192 193 193 1) ST_AddBand(rast raster, index int, pixeltype text, initialvalue float8, nodataval float8) … … 197 197 3) ST_AddBand(rast raster, index int, pixeltype text) 198 198 199 199 The second series of variant add the new band as the last band. 200 200 201 201 4) ST_AddBand(rast raster, pixeltype text, initialvalue float8, nodataval float8) … … 205 205 6) ST_AddBand(rast raster, pixeltype text) 206 206 207 207 The third series of variant add a band as the copy of another raster band. 208 208 209 209 7) ST_AddBand(rast1 raster, rast2 raster, band int, index int)