ST_Min4ma — 计算邻域中最小像素值的栅格处理函数。
float8 ST_Min4ma(
float8[][] matrix, text nodatamode, text[] VARIADIC args)
;
double precision ST_Min4ma(
double precision[][][] value, integer[][] pos, text[] VARIADIC userargs)
;
计算像素邻域中的最小像素值。
对于格式 2,可以通过将该值传递给 userargs 来指定 NODATA 像素的替换值。
格式 1 是一个专门的回调函数,用作ST_MapAlgebraFctNgb的回调参数。 |
格式 2 是一个专门的回调函数,用作ST_MapAlgebra (callback function version)(回调函数版本)的回调参数。 |
不鼓励使用格式 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_min4ma(float[][],text,text[])'::regprocedure, 'ignore', NULL), 2, 2 ) FROM dummy_rast WHERE rid = 2; rid | st_value -----+---------- 2 | 250 (1 row)