删除栅格属性表 (数据管理)

描述

移除与栅格数据集关联的栅格属性表。

使用方法

  • 输入栅格数据集只能具有单一波段。

语法

DeleteRasterAttributeTable(in_raster)
参数说明数据类型
in_raster

包含要移除的属性表的栅格数据集。

Raster Layer

派生输出

名称说明数据类型
out_raster

输出栅格数据集。

栅格图层

代码示例

DeleteRasterAttributeTable 示例 1(Python 窗口)

这是 DeleteRasterAttributeTable 工具的 Python 示例。

##====================================
##Delete Raster Attribute Table
##Usage: DeleteRasterAttributeTable_management in_raster
    
import arcpy
arcpy.env.workspace = "C:/Workspace"

##Delete the attribute table of single band image if exist
arcpy.DeleteRasterAttributeTable_management("image.tif")
DeleteRasterAttributeTable 示例 2(独立脚本)

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

##====================================
##Delete Raster Attribute Table
##Usage: DeleteRasterAttributeTable_management in_raster
    
import arcpy
arcpy.env.workspace = "C:/Workspace"

##Delete the attribute table of single band image if exist
arcpy.DeleteRasterAttributeTable_management("image.tif")

环境

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

许可信息

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

相关主题