获取像元值 (数据管理)
摘要
检索特定 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()
相关主题
许可信息
ArcView: 是
ArcEditor: 是
ArcInfo: 是
7/10/2012