获取像元值 (Data Management)

许可等级:BasicStandardAdvanced

摘要

检索特定 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()

环境

相关主题

许可信息

ArcGIS for Desktop Basic:是
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013