删除色彩映射表 (Data Management)

许可等级:BasicStandardAdvanced

摘要

移除与栅格数据集相关的色彩映射表。

用法

语法

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

包含要移除的色彩映射表的栅格数据集。

Raster Layer

代码实例

DeleteColormap 示例(Python 窗口)

这是 DeleteColormap 工具的 Python 示例。

import arcpy
arcpy.DeleteColormap_management("c:/data/delcolormap.tif")
DeleteColormap 示例 2(独立脚本)

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

##====================================
##Delete Colormap
##Usage: CalculateStatistics_management in_raster
    
try:
    import arcpy
    arcpy.env.workspace = r"C:/Workspace"
    
    ##Delete the colormap of single band image if exist
    arcpy.DeleteColormap_management("nocolormap.img")

except:
    print "Delete Colormap example failed."
    print arcpy.GetMessages()

环境

相关主题

许可信息

ArcGIS for Desktop Basic:是
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013