名称

ST_Max4ma — 计算邻域内最大像素值的栅格处理函数。

概要

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

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

描述

计算像素邻域内的最大像素值。

对于变体 2,可以通过将该值传递给 userargs 来指定 NODATA 像素的替换值。

[Note]

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

[Note]

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

[Warning]

不建议使用变体 1,因为 ST_MapAlgebraFctNgb 从 2.1.0 版本开始已弃用。

可用性:2.0.0

增强:2.1.0 添加变体 2

示例

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

另请参阅

ST_MapAlgebraFctNgbST_MapAlgebra(回调函数版本)ST_Min4maST_Sum4maST_Mean4maST_Range4maST_Distinct4maST_StdDev4ma