Changes between Version 82 and Version 83 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
May 24, 2011, 10:57:56 AM (13 years ago)
Author:
Bborie Park
Comment:

fixed hasnodata

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v82 v83  
    10321032  nband: index of band
    10331033
    1034   hasnodata: if FALSE, any pixel who's value is nodata is ignored
     1034  hasnodata: if TRUE, any pixel who's value is nodata is ignored
    10351035
    10361036{{{
     
    104010402. ST_SummaryStats(rast raster, nband int) -> record
    10411041
    1042   assumes hasnodata = FALSE
     1042  assumes hasnodata = TRUE
    10431043
    10441044{{{
     
    105610564. ST_SummaryStats(rast raster) -> record
    10571057
    1058   assumes nband = 1 and hasnodata = FALSE
     1058  assumes nband = 1 and hasnodata = TRUE
    10591059
    10601060{{{
     
    110211024. ST_ApproxSummaryStats(rast raster, sample_percent double precision) -> record
    11031103
    1104   assumes that nband = 1 and hasnodata = FALSE
     1104  assumes that nband = 1 and hasnodata = TRUE
    11051105
    11061106{{{
     
    111011105. ST_ApproxSummaryStats(rast raster) -> record
    11111111
    1112   assumes that nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1112  assumes that nband = 1, hasnodata = TRUE and sample_percent = 0.1
    11131113
    11141114{{{
     
    113211322. ST_SummaryStats(rastertable text, rastercolumn text, nband int) -> record
    11331133
    1134     hasnodata = FALSE
     1134    hasnodata = TRUE
    11351135
    11361136{{{
     
    114811484. ST_SummaryStats(rastertable text, rastercolumn text) -> record
    11491149
    1150     nband = 1 and hasnodata = FALSE
     1150    nband = 1 and hasnodata = TRUE
    11511151
    11521152{{{
     
    116611662. ST_ApproxSummaryStats(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> record
    11671167
    1168     hasnodata = FALSE
     1168    hasnodata = TRUE
    11691169
    11701170{{{
     
    118611864. ST_ApproxSummaryStats(rastertable text, rastercolumn text, sample_percent double precision) -> record
    11871187
    1188     nband = 1 and hasnodata = FALSE
     1188    nband = 1 and hasnodata = TRUE
    11891189
    11901190{{{
     
    119611965. ST_ApproxSummaryStats(rastertable text, rastercolumn text) -> record
    11971197
    1198     nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1198    nband = 1, hasnodata = TRUE and sample_percent = 0.1
    11991199
    12001200{{{
     
    12171217  nband: index of band
    12181218
    1219   hasnodata: if FALSE, any pixel who's value is nodata is ignored
     1219  hasnodata: if TRUE, any pixel who's value is nodata is ignored
    12201220
    12211221{{{
     
    122512252. ST_Mean(rast raster, nband int) -> double precision
    12261226
    1227   assumes hasnodata = FALSE
     1227  assumes hasnodata = TRUE
    12281228
    12291229{{{
     
    124112414. ST_Mean(rast raster) -> double precision
    12421242
    1243   assumes nband = 1 and hasnodata = FALSE
     1243  assumes nband = 1 and hasnodata = TRUE
    12441244
    12451245{{{
     
    128112814. ST_ApproxMean(rast raster, sample_percent double precision) -> double precision
    12821282
    1283   assumes that nband = 1 and hasnodata = FALSE
     1283  assumes that nband = 1 and hasnodata = TRUE
    12841284
    12851285{{{
     
    128912895. ST_ApproxMean(rast raster) -> double precision
    12901290
    1291   assumes that nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1291  assumes that nband = 1, hasnodata = TRUE and sample_percent = 0.1
    12921292
    12931293{{{
     
    131113112. ST_Mean(rastertable text, rastercolumn text, nband int) -> double precision
    13121312
    1313     hasnodata = FALSE
     1313    hasnodata = TRUE
    13141314
    13151315{{{
     
    132713274. ST_Mean(rastertable text, rastercolumn text) -> double precision
    13281328
    1329     nband = 1 and hasnodata = FALSE
     1329    nband = 1 and hasnodata = TRUE
    13301330
    13311331{{{
     
    134513452. ST_ApproxMean(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> double precision
    13461346
    1347     hasnodata = FALSE
     1347    hasnodata = TRUE
    13481348
    13491349{{{
     
    136513654. ST_ApproxMean(rastertable text, rastercolumn text, sample_percent double precision) -> double precision
    13661366
    1367     nband = 1 and hasnodata = FALSE
     1367    nband = 1 and hasnodata = TRUE
    13681368
    13691369{{{
     
    137513755. ST_ApproxMean(rastertable text, rastercolumn text) -> double precision
    13761376
    1377     nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1377    nband = 1, hasnodata = TRUE and sample_percent = 0.1
    13781378
    13791379{{{
     
    13961396  nband: index of band
    13971397
    1398   hasnodata: if FALSE, any pixel who's value is nodata is ignored
     1398  hasnodata: if TRUE, any pixel who's value is nodata is ignored
    13991399
    14001400{{{
     
    140414042. ST_StdDev(rast raster, nband int) -> double precision
    14051405
    1406   assumes hasnodata = FALSE
     1406  assumes hasnodata = TRUE
    14071407
    14081408{{{
     
    142014204. ST_StdDev(rast raster) -> double precision
    14211421
    1422   assumes nband = 1 and hasnodata = FALSE
     1422  assumes nband = 1 and hasnodata = TRUE
    14231423
    14241424{{{
     
    146014604. ST_ApproxStdDev(rast raster, sample_percent double precision) -> double precision
    14611461
    1462   assumes that nband = 1 and hasnodata = FALSE
     1462  assumes that nband = 1 and hasnodata = TRUE
    14631463
    14641464{{{
     
    146814685. ST_ApproxStdDev(rast raster) -> double precision
    14691469
    1470   assumes that nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1470  assumes that nband = 1, hasnodata = TRUE and sample_percent = 0.1
    14711471
    14721472{{{
     
    149014902. ST_StdDev(rastertable text, rastercolumn text, nband int) -> double precision
    14911491
    1492     hasnodata = FALSE
     1492    hasnodata = TRUE
    14931493
    14941494{{{
     
    150615064. ST_StdDev(rastertable text, rastercolumn text) -> double precision
    15071507
    1508     nband = 1 and hasnodata = FALSE
     1508    nband = 1 and hasnodata = TRUE
    15091509
    15101510{{{
     
    152415242. ST_ApproxStdDev(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> double precision
    15251525
    1526     hasnodata = FALSE
     1526    hasnodata = TRUE
    15271527
    15281528{{{
     
    154415444. ST_ApproxStdDev(rastertable text, rastercolumn text, sample_percent double precision) -> double precision
    15451545
    1546     nband = 1 and hasnodata = FALSE
     1546    nband = 1 and hasnodata = TRUE
    15471547
    15481548{{{
     
    155415545. ST_ApproxStdDev(rastertable text, rastercolumn text) -> double precision
    15551555
    1556     nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1556    nband = 1, hasnodata = TRUE and sample_percent = 0.1
    15571557
    15581558{{{
     
    15751575  nband: index of band
    15761576
    1577   hasnodata: if FALSE, any pixel who's value is nodata is ignored
     1577  hasnodata: if TRUE, any pixel who's value is nodata is ignored
    15781578
    15791579{{{
     
    158315832. ST_MinMax(rast raster, nband int) -> record
    15841584
    1585   assumes hasnodata = FALSE
     1585  assumes hasnodata = TRUE
    15861586
    15871587{{{
     
    159915994. ST_MinMax(rast raster) -> record
    16001600
    1601   assumes nband = 1 and hasnodata = FALSE
     1601  assumes nband = 1 and hasnodata = TRUE
    16021602
    16031603{{{
     
    163916394. ST_ApproxMinMax(rast raster, sample_percent double precision) -> record
    16401640
    1641   assumes that nband = 1 and hasnodata = FALSE
     1641  assumes that nband = 1 and hasnodata = TRUE
    16421642
    16431643{{{
     
    164716475. ST_ApproxMinMax(rast raster) -> record
    16481648
    1649   assumes that nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1649  assumes that nband = 1, hasnodata = TRUE and sample_percent = 0.1
    16501650
    16511651{{{
     
    166916692. ST_MinMax(rastertable text, rastercolumn text, nband int) -> record
    16701670
    1671     hasnodata = FALSE
     1671    hasnodata = TRUE
    16721672
    16731673{{{
     
    168516854. ST_MinMax(rastertable text, rastercolumn text) -> record
    16861686
    1687     nband = 1 and hasnodata = FALSE
     1687    nband = 1 and hasnodata = TRUE
    16881688
    16891689{{{
     
    170317032. ST_ApproxMinMax(rastertable text, rastercolumn text, nband int, sample_percent double precision) -> record
    17041704
    1705     hasnodata = FALSE
     1705    hasnodata = TRUE
    17061706
    17071707{{{
     
    172317234. ST_ApproxMinMax(rastertable text, rastercolumn text, sample_percent double precision) -> record
    17241724
    1725     nband = 1 and hasnodata = FALSE
     1725    nband = 1 and hasnodata = TRUE
    17261726
    17271727{{{
     
    173317335. ST_ApproxMinMax(rastertable text, rastercolumn text) -> record
    17341734
    1735     nband = 1, hasnodata = FALSE and sample_percent = 0.1
     1735    nband = 1, hasnodata = TRUE and sample_percent = 0.1
    17361736
    17371737{{{
     
    17561756  nband: index of band to process on
    17571757
    1758   hasnodata: if FALSE, any pixel who's value is nodata is ignored.
     1758  hasnodata: if TRUE, any pixel who's value is nodata is ignored.
    17591759
    17601760  bins: the number of categories/bins to have in the histogram. If NULL or value less than one, the number of categories will be auto-computed using Sturges' formula if the number of values >= 30 or Square-root choice if number of values < 30.
     
    180018005. ST_Histogram(rast raster, nband int) -> set of records
    18011801
    1802   parameter "hasnodata" is removed and assumed to be FALSE
     1802  hasnodata is assumed to be TRUE
    18031803
    180418046. ST_Histogram(rast raster) -> set of records
     
    180818087. ST_Histogram(rast raster, nband int, bins int, width double precision[], right boolean) -> set of records
    18091809
    1810   hasnodata is assumed to be FALSE
     1810  hasnodata is assumed to be TRUE
    18111811
    181218128. ST_Histogram(rast raster, nband int, bins int, right boolean) -> set of records
     
    185418545. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision) -> set of records
    18551855
    1856   parameter "hasnodata" is removed and assumed to be FALSE
     1856  hasnodata is assumed to be TRUE
    18571857
    185818586. ST_ApproxHistogram(rast raster, nband int) -> set of records
     
    187018709. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision, bins int, width double precision[], right boolean) -> set of records
    18711871
    1872   hasnodata is assumed to be FALSE
     1872  hasnodata is assumed to be TRUE
    18731873
    1874187410. ST_ApproxHistogram(rast raster, nband int, sample_percent double precision, bins int, right boolean) -> set of records
     
    18941894  nband: index of band to process on
    18951895
    1896   hasnodata: if FALSE, any pixel who's value is nodata is ignored.
     1896  hasnodata: if TRUE, any pixel who's value is nodata is ignored.
    18971897
    18981898  quantiles: array of percentages to compute values for
     
    190819082. ST_Quantile(rast raster, nband int, quantiles double precision[]) -> set of records
    19091909
    1910   "hasnodata" is assumed to be FALSE
     1910  "hasnodata" is assumed to be TRUE
    19111911
    19121912{{{
     
    192019204. ST_Quantile(rast raster, nband int) -> set of records
    19211921
    1922   "hasnodata" is assumed to be FALSE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]
     1922  "hasnodata" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]
    19231923
    192419245. ST_Quantile(rast raster, quantiles double precision[]) -> set of records
    19251925
    1926   "nband" is assumed to be 1 and "hasnodata" is FALSE
     1926  "nband" is assumed to be 1 and "hasnodata" is TRUE
    19271927
    192819286. ST_Quantile(rast raster) -> set of records
     
    193619368. ST_Quantile(rast raster, nband int, quantile double precision) -> record
    19371937
    1938   "hasnodata" is assumed to be FALSE
     1938  "hasnodata" is assumed to be TRUE
    19391939
    194019409. ST_Quantile(rast raster, hasnodata boolean, quantile double precision) -> record
     
    1944194410. ST_Quantile(rast raster, quantile double precision) -> record
    19451945
    1946   "nband" is assumed to be 1  and "hasnodata" is assumed to be FALSE
     1946  "nband" is assumed to be 1  and "hasnodata" is assumed to be TRUE
    19471947
    19481948ST_ApproxQuantile adds a "sample_percent" indicating the percentage of the raster to sample
     
    19521952  nband: index of band to process on
    19531953
    1954   hasnodata: if FALSE, any pixel who's value is nodata is ignored
     1954  hasnodata: if TRUE, any pixel who's value is nodata is ignored
    19551955
    19561956  sample_percent: a value between 0 and 1 indicating the percentage of the raster band's pixels to consider when computing the quantiles
     
    196819682. ST_ApproxQuantile(rast raster, nband int, sample_percent double precision, quantiles double precision[]) -> set of records
    19691969
    1970   "hasnodata" is assumed to be FALSE
     1970  "hasnodata" is assumed to be TRUE
    19711971
    19721972{{{
     
    197619763. ST_ApproxQuantile(rast raster, nband int, sample_percent double precision) -> set of records
    19771977
    1978   "hasnodata" is assumed to be FALSE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]
     1978  "hasnodata" is assumed to be TRUE and "quantiles" assumed to be ARRAY[0, 0.25, 0.5, 0.75, 1]
    19791979
    198019804. ST_ApproxQuantile(rast raster, sample_percent double precision, quantiles double precision[]) -> set of records