概要
フィーチャ レイヤーのリプレゼンテーションを設定します。このレイヤーは一時的なもので、ArcGIS セッション中はメモリに保存され、モデルやスクリプトで使用することができます。
使用法
入力は、少なくとも 1 つのフィーチャクラス リプレゼンテーションが含まれるジオデータベース フィーチャクラスである必要があります。
結果として作成されるレイヤーは、特にモデルやスクリプトでレイヤー入力を必要とするカートグラフィック ツールに対する有効な入力として使用できます。
テンポラリ フィーチャ レイヤーは、[レイヤー ファイルの保存 (Save To Layer File)] ツールを使用してレイヤー ファイルとして保存することも、あるいは [フィーチャのコピー (Copy Features)] ツールを使用して新しいフィーチャクラスとして保存することもできます。ArcCatalog で作成されたレイヤーは、[レイヤー ファイルの保存 (Save To Layer File)] ツールを使用してレイヤー ファイルに保存しておかない限り、ArcMap で使用できません。
構文
arcpy.cartography.SetLayerRepresentation(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.
# Author: ESRI
# 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)
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: いいえ
- Standard: はい
- Advanced: はい