Name

ST_Retile — Retorna um conjunto de tiles configuradas de uma cobertura raster aleatória.

Synopsis

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

Descrição

Retorna um conjunto de tiles tendo a escala especificada (sfx, sfy) e tamanho máximo (tw, th) e cobrindo a extensão especificada (ext) com os dados vindos da cobertura raster especificada (tab, col).

As opções de algorítimo são: 'NearestNeighbor', 'Bilinear', 'Cubic', 'CubicSpline', e 'Lanczos'. Recorra a: GDAL Warp resampling methods para mais detalhes.

Disponibilidade: 2.2.0

Veja também

ST_CreateOverview