全部產品
Search
文件中心

PolarDB:ST_Quantile

更新時間:Jul 06, 2024

查詢raster對象分位元的像素值。

前提條件

通過ST_StatsQuantile預先計算分位元。

文法

setof record ST_Quantile(raster raster_obj,
         float8[] quantiles default NULL,
         cstring bands default '',
         boolean exclude_nodata_value default true,
          out integer band,
         out float8 quantile,
         out float8 value)

參數

參數名稱描述
raster_objraster對象。
quantiles需要計算的分位元,取值為0.25、0.5和0.75中的一個或多個。
bands需要計算的波段,格式為'0-2'或者'1,2,3',從0開始。 預設為'',表示裁剪所有的波段。
exclude_nodata_value是否需要計算nodata。
band返回波段號。
quantile返回分位元。
value返回像素值。

樣本

-- 計算所有波段 0.25 分位元的像素值。
SELECT  (ST_Quantile(rast, ARRAY[0.25], '0-2', true)).* FROM rat_quantile WHERE id = 1;
 band | quantile | value 
------+----------+-------
    0 |     0.25 |    11
    1 |     0.25 |    10
    2 |     0.25 |    50
(3 rows)

-- 計算0波段所有分位元的像素值。
SELECT  (ST_Quantile(rast, NULL, '0', true)).* FROM rat_quantile WHERE id = 1;
 band | quantile | value 
------+----------+-------
    0 |     0.25 |    11
    0 |      0.5 |    11
    0 |     0.75 |    65
(3 rows)