Changes between Version 35 and Version 36 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
Mar 14, 2011, 11:15:55 AM (13 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v35 v36  
    207207So this would mean "for each pixel, compute the average of all the 1 + 8 + 16 = 25 pixels surrounding the current pixel and "ignore" pixels with nodata values."
    208208
    209 The "ST_Avg" summarizing function should accept three parameters: an array of float8 values, a X and a Y dimension, and optionnally a "what to do with nodata values". The possible value for this parameter could be:
     209The "ST_Avg" summarizing function should accept three parameters: an array of float8 values, a X and a Y dimension, and optionnally a "what to do with nodata values". The possible value for this last parameter could be:
    210210
    211211 *"NULL": If any value is a nodata value, return NULL.
     212
    212213 *"ignore": Ignore any nodata value so that if 4 pixels on 25 are nodata values, do the computation with the 21 remaining.
     214
    213215 *a value: Replace any nodata value with this value and compute.
    214216