CompositeBand

サマリー

Creates a raster object by combining multiple rasters to form a multiband image.

説明

For more information about how this function works, see the Composite Bands raster function.

The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.

構文

CompositeBand (raster)
パラメーター説明データ タイプ
raster
[raster,...]

The input raster or list of rasters.

Raster
戻り値
データ タイプ説明
Raster

The output multiband raster.

コードのサンプル

CompositeBand example

Combines a list of single-band rasters into a multiband raster.

import arcpy

compband_raster = arcpy.sa.CompositeBand(["Band1.TIF", "Band2.TIF", "Band3.TIF"])