ラスタ属性テーブルの削除(Delete Raster Attribute Table) (データの管理)

ライセンス レベル:BasicStandardAdvanced

サマリ

ラスタ データセットに関連付けられたラスタ属性テーブルを削除します。ラスタ属性テーブルはシングルバンド ラスタ データセットでのみ構築可能なため、このツールはシングルバンドのラスタ データセットに対してのみ適用されます。

使用法

構文

DeleteRasterAttributeTable_management (in_raster)
パラメータ説明データ タイプ
in_raster

削除するラスタ属性テーブルを含むラスタ データセット。このラスタ データセットはシングルバンド ラスタ データセットでなければなりません。

Raster Layer

コードのサンプル

DeleteRasterAttributeTable(ラスタ属性テーブルの削除)の例(Python ウィンドウ)

DeleteRasterAttributeTable(ラスタ属性テーブルの削除)ツールの Python サンプルを次に示します。

import arcpy
arcpy.DeleteRasterAttributeTable_management("c:/data/delrat.tif")
DeleteRasterAttributeTable(ラスタ属性テーブルの削除)の例 2(スタンドアロン スクリプト)

DeleteRasterAttributeTable(ラスタ属性テーブルの削除)ツールの Python スクリプトのサンプルを次に示します。

##====================================
##Delete Raster Attribute Table
##Usage: DeleteRasterAttributeTable_management in_raster
    
try:
    import arcpy
    arcpy.env.workspace = r"C:/Workspace"
    
    ##Delete the attribute table of single band image if exist
    arcpy.DeleteRasterAttributeTable_management("image.tif")

except:
    print "Delete Raster Attribute Table example failed."
    print arcpy.GetMessages()

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013