サマリー
ラスター データセットに関するメタデータ情報と説明的統計情報を取得します。
使用法
返されたプロパティは [結果] ウィンドウに表示されます。
このツールの Python の結果は、ジオプロセシング結果オブジェクトです。文字列値を取得するには、結果オブジェクトの getOutput メソッドを使用します。
構文
GetRasterProperties_management (in_raster, {property_type}, {band_index})
パラメーター | 説明 | データ タイプ |
in_raster | 取得するプロパティを含むラスター。 | Composite Geodataset |
property_type (オプション) | 入力ラスターから取得されるプロパティ。
| String |
band_index (オプション) | プロパティを取得するバンド名を選択します。バンドを選択しない場合は、1 番目のバンドが使用されます。 | String |
派生した出力
名前 | 説明 | データ タイプ |
property |
コードのサンプル
GetRasterProperties (ラスター プロパティの取得) の例 1 (Python ウィンドウ)
以下は、GetRasterProperties (ラスター プロパティの取得) を実行する Python サンプルです。
import arcpy
#Get the geoprocessing result object
elevSTDResult = arcpy.GetRasterProperties_management("c:/data/elevation", "STD")
#Get the elevation standard deviation value from geoprocessing result object
elevSTD = elevSTDResult.getOutput(0)
GetRasterProperties (ラスター プロパティの取得) の例 2 (スタンドアロン スクリプト)
以下は、GetRasterProperties (ラスター プロパティの取得) を実行する Python スクリプト サンプルです。
import arcpy
#Get the geoprocessing result object
elevSTDResult = arcpy.GetRasterProperties_management("c:/data/elevation", "STD")
#Get the elevation standard deviation value from geoprocessing result object
elevSTD = elevSTDResult.getOutput(0)
環境
ライセンス情報
- ArcGIS Desktop Basic: はい
- ArcGIS Desktop Standard: はい
- ArcGIS Desktop Advanced: はい