Changes between Version 46 and Version 47 of WKTRaster/SpecificationWorking02


Ignore:
Timestamp:
09/24/10 13:36:28 (14 years ago)
Author:
pracine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking02

    v46 v47  
    159159  1) ST_Clip(raster, ulx float8, uly float8, width int, height int) -> raster
    160160
    161   2) ST_Clip(raster, geometry) -> raster
    162 
    163   3) ST_Clip(raster, geometry, 'EXACT') -> raster
    164 
    165 
    166 
    167  Variant 1 takes the upper left corner, the width and the height of the desired zone. Variant 2 determine the extent of this zone from the extent of a geometry. Variant 3 determine the extent of this zone from the extent of a geometry and set all pixel outside the geometry to no data values.
     161  2) ST_Clip(raster, band, ulx float8, uly float8, width int, height int) -> raster
     162
     163  3) ST_Clip(raster, geometry) -> raster
     164
     165  4) ST_Clip(raster, band, geometry) -> raster
     166
     167  5) ST_Clip(raster, geometry, 'EXACT') -> raster
     168
     169  6) ST_Clip(raster, band, geometry, 'EXACT') -> raster
     170
     171
     172
     173 Variant 1 takes the upper left corner, the width and the height of the desired zone. Variant 3 determine the extent of this zone from the extent of a geometry. Variant 5 determine the extent of this zone from the extent of a geometry and set all pixel outside the geometry to no data values.
     174
     175 Variants 2, 4 and 6 return only the selected band with the clipped raster.
    168176
    169177 If the geometry is totally included into one pixel (a point for example), only this pixel is kept in the returned raster.