全部產品
Search
文件中心

PolarDB:ST_PixelAsPoint

更新時間:Jul 06, 2024

將柵格像素轉換為基於點方式表述的幾何對象。

文法

geometry ST_PixelAsPoint(raster raster_obj,
    integer row default 0,
    integer column default 0,
    integer pyramid default 0,
    cstring ref_point default 'UPPERLEFT') ;

參數

參數名稱描述
raster_obj需要轉換的raster對象。
row像素所處的行號,以左上方點為起始點,從0開始。
column像素所處的列號,以左上方點為起始點,從0開始。
pyramid像素所在的金字塔層級。
ref_point點所在的參考位置,取值範圍:
  • UPPERLEFT:左上方點
  • CENTER:中心點。

描述

將柵格像素轉換為基於點方式的表述的幾何對象,點的相對位置通過ref_point參數指定。

樣本

SELECT ST_AsText(ST_PixelAsPoint(rast, 10, 10))
FROM rast_table
WHERE id = 10;

------------------
POINT(-178.2 88.2)