角度でリプレゼンテーション コントロール ポイントを設定(Set Representation Control Point By Angle) (カートグラフィ)

サマリ

ライン方向の変化分だけ生じた角度が、指定した最大角度以下であるラインまたはポリゴンのアウトライン上の頂点にリプレゼンテーション コントロール ポイントを配置します。

Set Representation By Control Point tool
Dash placement can be improved along a line or polygon outline when representation control points are placed at prominent angles

使用法

構文

SetRepresentationControlPointByAngle_cartography (in_features, maximum_angle)
パラメータ説明データ タイプ
in_features

ラインまたはポリゴンのリプレゼンテーションが含まれる入力フィーチャ レイヤ。

Layer
maximum_angle

ラインまたはポリゴンのアウトライン上の頂点をリプレゼンテーション コントロール ポイントとして設定するかどうかの決定に使用する角度。角度の値は 0 よりも大きく、180 度(10 進)未満にする必要があります。

Double

コードのサンプル

SetRepresentationControlPointByAngle(角度でリプレゼンテーション コントロール ポイントを設定)ツールの例(Python ウィンドウ)

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

import arcpy
from arcpy import env
env.workspace = "C:\data"

arcpy.SetRepresentationControlPointByAngle_cartography("trails.lyr", "135")
SetRepresentationControlPointByAngle(角度でリプレゼンテーション コントロール ポイントを設定)ツールの例(スタンドアロン Python スクリプト)

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

# Name: SetRepresentationControlPointByAngle_standalone_script.py
# Description: adds representation control points at locations where a feature has a sharp angle in its geometry
 
# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
in_representations = "trails.lyr"
minimum_angle_deviation = "135"

# Execute Set Representation Control Point At Intersect
arcpy.SetRepresentationControlPointAtIntersect_cartography(in_representations, minimum_angle_deviation)

環境

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

関連項目

ライセンス情報

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

7/10/2012