ST_Contour — 与えられたラスタバンドから等高線ベクタを生成します。GDAL等高線生成アルゴリズムを使います。
setof record ST_Contour(
raster rast, integer bandnumber=1, double precision level_interval=100.0, double precision level_base=0.0, double precision[] fixed_levels=ARRAY[], boolean polygonize=false)
;
与えられたラスタバンドから等高線ベクタを生成します。GDAL等高線生成アルゴリズムを使います。
fixed_levels
パラメータが空でない配列である時、level_interval
とlevel_base
とは無視されます。
入力パラメータは次の通りです。
rast
The raster to generate the contour of
bandnumber
The band to generate the contour of
level_interval
The elevation interval between contours generated
level_base
The "base" relative to which contour intervals are applied, this is normally zero, but could be different. To generate 10m contours at 5, 15, 25, ... the LEVEL_BASE would be 5.
fixed_levels
The elevation interval between contours generated
polygonize
If true
, contour polygons will be created, rather than polygon lines.
返り値は次に示す属性を持つ行の集合です。
等高線のジオメトリ。
GDALが等高線に与える一意の識別子。
ラインが表現するラスタ値。標高DEM入力の場合、出力等高線の標高となります。
Availability: 3.2.0