ST_PixelAsCentroid — ピクセルで表現される面の重心 (ポイントジオメトリ)を返します。
geometry ST_PixelAsCentroid(
raster rast, integer x, integer y)
;
ピクセルで表現される面の重心 (ポイントジオメトリ)を返します。
Enhanced: 3.2.0 C言語による、より高速な実装。
Availability: 2.1.0
SELECT ST_AsText(ST_PixelAsCentroid(rast, 1, 1)) FROM dummy_rast WHERE rid = 1; st_astext -------------- POINT(1.5 2)