名称

ST_Retile — 从任意切片的栅格覆盖中返回一组配置的切片。

语法

SETOF raster ST_Retile(regclass tab, name col, geometry ext, float8 sfx, float8 sfy, int tw, int th, text algo='NearestNeighbor');

说明

返回一组切片,这些切片具有指定的比例 (sfxsfy) 和最大大小 (twth),并且覆盖指定范围 (ext),其中数据来自指定的栅格覆盖 (tabcol)。

算法选项包括:“NearestNeighbor”、“Bilinear”、“Cubic”、“CubicSpline”和“Lanczos”。有关更多详细信息,请参阅:GDAL Warp 重采样方法

可用性:2.2.0

另请参阅

ST_CreateOverview