BandDecomposition

2021/10/30

# gma.rasp.Decompose.BandDecomposition(InFile, OutPath, Bands = None, OutFormat = 'GTiff')


功能:【波段分解】。将多波段文件拆分(或提取)为单波段文件。

参数:

 InFile:str。输入栅格路径。

 OutPath:str。输出文件夹路径。

提示

输出文件名以 源文件名_波段序号 的形式自动命名。

可选参数:

 Bands = int||list。需要导出文件的波段,编号从 0 开始。默认全部导出(None)。

 OutFormat = str。输出栅格文件格式。默认为 GTiff,其他格式详见 ToOtherFormat 函数。


示例:

from gma import rasp

InFile = 'BandSynthesis.tif'
OutPath = 'Decompose'

rasp.Decompose.BandDecomposition(InFile, OutPath)
1
2
3
4
5
6