获取像元值 (数据管理)

描述

使用 x,y 坐标获取给定像素的值。

使用方法

  • 需要地理处理模型的像素值时,可使用此工具。在 ArcGIS Pro 中,从地图选项卡中选择“导航”按钮,然后单击像素。将返回每个可见波段的值。

语法

GetCellValue(in_raster, location_point, {band_index})
参数说明数据类型
in_raster

要查询的栅格。

Mosaic Dataset; Mosaic Layer; Raster Layer
location_point

像素位置的 x 和 y 坐标。

Point
band_index
[band_index,...]
(可选)

指定要查询的波段。留空以查询多波段数据集中的所有波段。

Value Table

派生输出

名称说明数据类型
out_string

像素值。

字符串

代码示例

GetCellValue 示例 1(Python 窗口)

这是 GetCellValue 工具的 Python 示例。

import arcpy
result = arcpy.GetCellValue_management("C:/data/rgb.img", "480785 3807335", "2;3")
cellvalue = int(result.getOutput(0))
print(cellvalue)
GetCellValue 示例 2(独立脚本)

这是 GetCellValue 工具的 Python 脚本示例。

'''====================================
Get Cell Value
Usage: GetCellValue_management in_raster location_point {ID;ID...}
'''   
   
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")
cellvalue = int(result.getOutput(0))

# View the result in execution log
print(cellvalue)

环境

此工具不使用任何地理处理环境。

许可信息

  • Basic: 是
  • Standard: 是
  • Advanced: 是

相关主题