Changes between Version 73 and Version 74 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
Apr 29, 2011, 10:47:59 AM (13 years ago)
Author:
Bborie Park
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v73 v74  
    149149The functions are:
    150150
    151 1. ST_ApproxMinMax(rast raster, nband int, ignore_nodata boolean, sample double precision) -> record
    152 
    153   sample: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider when determining the min/max pair.
     1511. ST_ApproxMinMax(rast raster, nband int, ignore_nodata boolean, sample_percent double precision) -> record
     152
     153  sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider when determining the min/max pair.
    154154
    155155{{{
     
    159159}}}
    160160
    161 2. ST_ApproxMinMax(rast raster, ignore_nodata boolean, sample double precision) -> record
     1612. ST_ApproxMinMax(rast raster, ignore_nodata boolean, sample_percent double precision) -> record
    162162
    163163  assumes that nband = 1
     
    169169}}}
    170170
    171 3. ST_ApproxMinMax(rast raster, sample double precision) -> record
     1713. ST_ApproxMinMax(rast raster, sample_percent double precision) -> record
    172172
    173173  assumes that nband = 1 and ignore_nodata = TRUE
     
    1791794. ST_ApproxMinMax(rast raster) -> record
    180180
    181   assumes that nband = 1, ignore_nodata = TRUE and sample = 0.1
     181  assumes that nband = 1, ignore_nodata = TRUE and sample_percent = 0.1
    182182
    183183{{{