セル値の取得(Get Cell Value) (データ管理)
サマリ
特定の X、Y 座標のピクセル値を取得します。マルチバンド ラスタ データセットの場合は、セル値の取得元となるバンドを指定できます。バンドを指定しないと、入力位置のすべてのバンドのピクセル値が返されます。
使用法
-
このツールは、ジオプロセシング モデルでピクセル値が必要とされる場合に使用します。ArcMap、ArcScene、または ArcGlobe では、代わりに [個別属性] ツールを使用できます。
構文
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()
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
7/28/2014