レイヤのリプレゼンテーションを設定(Set Layer Representation) (カートグラフィ)

サマリ

フィーチャ レイヤのリプレゼンテーションを設定します。このレイヤは一時的なもので、ArcGIS セッション中はメモリに保存され、モデルやスクリプトで使用することができます。

使用法

構文

SetLayerRepresentation_cartography (in_layer, representation)
パラメータ説明データ タイプ
in_layer

少なくとも 1 つのリプレゼンテーションが含まれる入力フィーチャ レイヤ。

Layer
representation

入力フィーチャ レイヤに対して設定するリプレゼンテーション。

String

コードのサンプル

SetLayerRepresentation(レイヤのリプレゼンテーションを設定)ツールの例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、イミディエイト モードで SetLayerRepresentation(レイヤのリプレゼンテーションを設定)ツールを使用する方法を示しています。

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.SetLayerRepresentation_cartography("footprints.lyr", "buildings_Rep")
SetLayerRepresentation(レイヤのリプレゼンテーションを設定)ツールの例(スタンドアロン Python スクリプト)

次のスタンドアロン スクリプトは、SetLayerRepresentation(レイヤのリプレゼンテーションを設定)ツールを使用する例を示しています。

# Name: SetLayerRepresentation_standalone_script.py
# Description: Sets a representation for a feature layer. The layer is temporary and stored in memory for use in models and scripts.
 
# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
in_features = "footprints.lyr"
representation = "buildings_Rep"

# Execute Set Layer Representation
arcpy.SetLayerRepresentation_cartography(in_features, representation)

環境

このツールは、ジオプロセシング環境を使用しません

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: 必須 ◎
ArcInfo: 必須 ◎

7/10/2012