セル値の取得(Get Cell Value) (データの管理)

サマリ

特定の X、Y 座標のピクセル値を取得します。マルチバンド ラスタ データセットの場合は、セル値の取得元となるバンドを指定できます。バンドを指定しないと、入力位置のすべてのバンドのピクセル値が返されます。

使用法

構文

GetCellValue_management (in_raster, location_point, {band_index})
パラメータ説明データ タイプ
in_raster

入力ラスタ データセット。

Mosaic Dataset; Mosaic Layer; Raster Layer;
location_point

ピクセル位置の X、Y 座標を入力します。

Point
band_index
[band_index,...]
(オプション)

ピクセル値を取得したいバンドを定義します。バンドを定義しないと、当該 X、Y 位置のすべてのバンドのピクセル値が返されます。

Value Table

コードのサンプル

GetCellValue(セル値の取得)の例 1(Python ウィンドウ)

GetCellValue(セル値の取得)ツールの Python サンプルを次に示します。

import arcpy
result = arcpy.GetCellValue_management("C:/data/rgb.img", "480785 3807335", "2;3")
cellSize = int(result.getOutput(0))
print cellSize
GetCellValue(セル値の取得)の例 2(スタンドアロン スクリプト)

GetCellValue(セル値の取得)ツールの Python スクリプトのサンプルを次に示します。

'''====================================
Get Cell Value
Usage: GetCellValue_management in_raster location_point {ID;ID...}
'''   
   
try:
    import arcpy
    arcpy.env.workspace = "C:/Workspace"
    
    # Get the Band_2 and Band_3 cell value of certain point in a RGB image
    result = arcpy.GetCellValue_management("rgb.img", "480785 3807335", "2;3")
    cellSize = int(result.getOutput(0))
    
    # View the result in execution log
    print cellSize

except:
    print "Get Cell Value exsample failed."
    print arcpy.GetMessages()

環境

関連項目

ライセンス情報

ArcView: はい
ArcEditor: はい
ArcInfo: はい

7/10/2012