名称

ST_Distinct4ma — 计算邻域中唯一像素值数量的栅格处理函数。

概要

float8 ST_Distinct4ma(float8[][] matrix, text nodatamode, text[] VARIADIC args);

double precision ST_Distinct4ma(double precision[][][] value, integer[][] pos, text[] VARIADIC userargs);

描述

计算像素邻域中唯一像素值的个数。

[Note]

变体 1 是一个专门的回调函数,用于作为 ST_MapAlgebraFctNgb 的回调参数。

[Note]

变体 2 是一个专门的回调函数,用于作为 ST_MapAlgebra(回调函数版本) 的回调参数。

[Warning]

由于 ST_MapAlgebraFctNgb 已在 2.1.0 版本中弃用,因此不建议使用变体 1。

可用性:2.0.0

增强:2.1.0 添加变体 2

示例

SELECT
    rid,
    st_value(
        st_mapalgebrafctngb(rast, 1, NULL, 1, 1, 'st_distinct4ma(float[][],text,text[])'::regprocedure, 'ignore', NULL), 2, 2
    )
FROM dummy_rast
WHERE rid = 2;
 rid | st_value
-----+----------
   2 |        3
(1 row)
                

另请参阅

ST_MapAlgebraFctNgbST_MapAlgebra(回调函数版本)ST_Min4maST_Max4maST_Sum4maST_Mean4maST_Distinct4maST_StdDev4ma