インデックスの追加(Index Item) (カバレッジ)

サマリ

属性インデックスを作成して、検索操作中に、指定されたアイテムへのアクセスを高速化します。

使用法

構文

IndexItem_arc (in_info_table, index_item)
パラメータ説明データ タイプ
in_info_table

インデックスを作成するアイテムのある INFO テーブルの名前

ArcInfo table
index_item

インデックスを作成するアイテムの名前

ArcInfo item

コードのサンプル

IndexItem(インデックスの追加)の例(スタンドアロン スクリプト)

次のスタンドアロン スクリプトで、カバレッジ内のアイテムにインデックスを作成し、インデックスを作成したアイテムを使用してフィーチャを選択する方法を示します。

# Name: IndexItem_Example.py
# Description: Indexes an item then uses that item to select features.
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
inInfoTable = "stream/arc"
indexItem = "STRM_ORD"
inCover = "stream"
outCover = "C:/output/lowerstreams"
infoExpress = ["RESELECT STRM_ORD > 3"]

# Execute IndexItem
arcpy.IndexItem_arc(inInfoTable, indexItem)
arcpy.Reselect_arc(inCover, outCover, infoExpress)

環境

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: いいえ
ArcInfo: 必須 ArcInfo Workstation がインストールされていること

7/10/2012