全部產品
Search
文件中心

PolarDB:ST_Slope

更新時間:Jul 06, 2024

計算坡度,返回弧度為單位的像元坡度柵格對象。

文法

raster ST_Slope(raster rast, integer pyramid_level, integer band, Box extent, BoxType type, float8 zfactor, cstring storageOption);

參數

參數名稱描述
rastraster對象。
pyramid_level計算的金字塔等級。
Band波段索引號
box分析地區,格式為'((m inX,m inY), (m axX,m axY))'
type分析地區的座標類型,只能是以下一種:
  • Raster(影像座標)
  • World(全局座標)
zfactor高程誇張值,預設為1。
storageOption目標raster對象的儲存選項,參見ST_ClipToRast函數。

描述

坡度計算函數用於為每個像元計算值在從該像元到與其相鄰的像元方向上的最大變動率。實際上,高程隨著像元與其相鄰的八個像元之間距離的變化而產生的最大變動率,可用來識別自該像元開始的最陡坡降。

樣本

select st_slope(rast, 0, 0, '(0,0), (5,5)', 'Raster', 2.0) from t_surface where id=1;