删除色彩映射表 (数据管理)
摘要
移除与栅格数据集相关的色彩映射表。
用法
-
当 IMG 或 TIFF 数据集的属性表中内部存储色彩映射表时,该工具将不工作。如果属性表中包含“红色”、“绿色”和“蓝色”字段,则表示无法使用此工具。
语法
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()
环境
相关主题
许可信息
ArcView: 是
ArcEditor: 是
ArcInfo: 是
7/10/2012