Name

ST_Retile — 从任意平铺的栅格覆盖范围返回一组配置的平铺。

Synopsis

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

描述

返回一组具有指定比例 (sfx, sfy) 和最大尺寸 (tw, th) 并使用来自指定栅格覆盖范围 (tab, col) 的数据覆盖指定范围 (ext) 的图块。

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

可用性:2.2.0

相关信息

ST_CreateOverview