リプレゼンテーション ルールの計算(Calculate Representation Rule) (カートグラフィ)

サマリ

ルール ID フィールドを計算して、既存のリプレゼンテーション ルールをフィーチャクラス リプレゼンテーションのフィーチャに適用します。

使用法

構文

CalculateRepresentationRule_cartography (in_features, representation, representation_rule)
パラメータ説明データ タイプ
in_features

リプレゼンテーション ルールを計算する対象のフィーチャを格納するフィーチャクラス

Feature Layer
representation

フィーチャに適用されるリプレゼンテーション ルールを格納するフィーチャクラス リプレゼンテーション。このフィーチャクラス リプレゼンテーションは、入力フィーチャクラスに属している必要があります。

String
representation_rule

ルール ID フィールドを計算して、入力フィーチャに適用されるリプレゼンテーション ルール

String

コードのサンプル

CalculateRepresentationRule(リプレゼンテーション ルールの計算)ツールの例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、CalculateRepresentationRule(リプレゼンテーション ルールの計算)ツールをイミディエイト モードで使用する方法を、例を挙げて示したものです。

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.CalculateRepresentationRule_cartography("footprints.lyr", "footprints_Rep", "Rule_3")
CalculateRepresentationRule(リプレゼンテーション ルールの計算)ツールの例(スタンドアロン Python スクリプト)

このスタンドアロン スクリプトは、CalculateRepresentationRule(リプレゼンテーション ルールの計算)ツールの使用例を示しています。

# Name: CalculateRepresentationRule_standalone_script.py
# Description: Applies existing representation rules to features in a feature class representation by calculating the RuleID field.
 
# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
in_features = "footprints.lyr"
representation = "footprints_Rep"
representation_rule = "Rule_3"

# Execute Calculate Representation Rule
arcpy.CalculateRepresentationRule_cartography(in_features, representation, representation_rule)

環境

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

関連項目

ライセンス情報

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

7/10/2012