描述
移除与栅格数据集关联的栅格属性表。
使用方法
输入栅格数据集只能具有单一波段。
语法
arcpy.management.DeleteRasterAttributeTable(in_raster)
参数 | 说明 | 数据类型 |
in_raster | 包含要移除的属性表的栅格数据集。 | Raster Layer |
派生输出
名称 | 说明 | 数据类型 |
out_raster | 输出栅格数据集。 | 栅格图层 |
代码示例
这是 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 工具的 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: 是