ST_Slope — 返回高程栅格波段的坡度(默认以度为单位)。对于分析地形很有用。
raster ST_Slope(
raster rast, integer nband=1, text pixeltype=32BF, text units=DEGREES, double precision scale=1.0, boolean interpolate_nodata=FALSE)
;
raster ST_Slope(
raster rast, integer nband, raster customextent, text pixeltype=32BF, text units=DEGREES, double precision scale=1.0, boolean interpolate_nodata=FALSE)
;
返回高程栅格波段的坡度(默认以度为单位)。使用地图代数,并对相邻像素应用坡度方程。
units
指示坡度的单位。可能的值为:RADIANS、DEGREES(默认值)、PERCENT。
scale
是垂直单位与水平单位的比率。对于 Feet:LatLon,使用 scale=370400;对于 Meters:LatLon,使用 scale=111120。
如果 interpolate_nodata
为 TRUE,则在计算表面坡度之前,将使用 ST_InvDistWeight4ma 插值输入栅格中的 NODATA 像素值。
有关坡度、坡向和山体阴影的更多信息,请参阅 ESRI - 山体阴影的工作原理 和 ERDAS 现场指南 - 坡度图像。 |
可用性:2.0.0
增强:2.1.0 使用 ST_MapAlgebra(),并添加了可选的 units
、scale
、interpolate_nodata
函数参数
更改:2.1.0 在早期版本中,返回值以弧度为单位。现在,返回值默认为度
WITH foo AS ( SELECT ST_SetValues( ST_AddBand(ST_MakeEmptyRaster(5, 5, 0, 0, 1, -1, 0, 0, 0), 1, '32BF', 0, -9999), 1, 1, 1, ARRAY[ [1, 1, 1, 1, 1], [1, 2, 2, 2, 1], [1, 2, 3, 2, 1], [1, 2, 2, 2, 1], [1, 1, 1, 1, 1] ]::double precision[][] ) AS rast ) SELECT ST_DumpValues(ST_Slope(rast, 1, '32BF')) FROM foo st_dumpvalues ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ --------------------------------------------------------------------- (1,"{{10.0249881744385,21.5681285858154,26.5650520324707,21.5681285858154,10.0249881744385},{21.5681285858154,35.2643890380859,36.8698959350586,35.2643890380859,21.5681285858154}, {26.5650520324707,36.8698959350586,0,36.8698959350586,26.5650520324707},{21.5681285858154,35.2643890380859,36.8698959350586,35.2643890380859,21.5681285858154},{10.0249881744385,21. 5681285858154,26.5650520324707,21.5681285858154,10.0249881744385}}") (1 row)
覆盖面切片的完整示例。此查询仅适用于 PostgreSQL 9.1 或更高版本。
WITH foo AS ( SELECT ST_Tile( ST_SetValues( ST_AddBand( ST_MakeEmptyRaster(6, 6, 0, 0, 1, -1, 0, 0, 0), 1, '32BF', 0, -9999 ), 1, 1, 1, ARRAY[ [1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 2, 1], [1, 2, 2, 3, 3, 1], [1, 1, 3, 2, 1, 1], [1, 2, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1] ]::double precision[] ), 2, 2 ) AS rast ) SELECT t1.rast, ST_Slope(ST_Union(t2.rast), 1, t1.rast) FROM foo t1 CROSS JOIN foo t2 WHERE ST_Intersects(t1.rast, t2.rast) GROUP BY t1.rast;