摘要
使用 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,...] (可选) | 指定要查询的波段。留空以查询多波段数据集中的所有波段。 | 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...}
'''
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)
环境
许可信息
- ArcGIS Desktop Basic: 是
- ArcGIS Desktop Standard: 是
- ArcGIS Desktop Advanced: 是