スカイライン グラフ (3D Analyst)

サマリ

天空の可視領域を計算し、オプションでテーブルと極座標グラフを生成します。

テーブルとグラフは、観測点からスカイラインの各頂点に向かう水平角と対頂角を表します。

Skyline Graph

使用法

構文

SkylineGraph_3d (in_observer_point_features, in_line_features, {base_visibility_angle}, {additional_fields}, {out_angles_table}, {out_graph})
パラメータ説明データ タイプ
in_observer_point_features

The input features containing one or more observer points.

Feature Layer
in_line_features

スカイラインを表すライン フィーチャクラス。

Feature Layer
base_visibility_angle
(オプション)

天空の可視領域の割合を計算する際にベースラインとして使用する対頂角。0 は水平を表し、90 は真上を表します。また、-90 は真下を表します。デフォルトは 0 です。

Double
additional_fields
(オプション)

テーブルに、2 つの角度の値だけでなく追加フィールドを出力するかどうかを指定します。

  • NO_ADDITIONAL_FIELDS追加フィールドを出力しません。これがデフォルトです。
  • ADDITIONAL_FIELDS追加フィールドを出力します。
Boolean
out_angles_table
(オプション)

角度を出力するために作成するテーブル。デフォルトは空です。この場合、テーブルは出力されません。

Table
out_graph
(オプション)

オプションのグラフの名前。グラフを作成するには、テーブルを生成する必要があります。グラフが表示され、表示されたグラフを保存または編集できます。デフォルトは空です。この場合、グラフは出力されません。

Graph

コードのサンプル

SkylineGraph(スカイライン グラフ)の例 1(Python ウィンドウ)

The following sample demonstrates the use of this tool in the Python window:

import arcpy
from arcpy import env

arcpy.CheckOutExtension("3D")
env.workspace = "C:/data"
arcpy.SkylineGraph_3d("observers.shp", "skyline_outline.shp", 0, "ADDITIONAL_FIELDS", "table.dbf")
SkylineGraph(スカイライン グラフ)の例 2(スタンドアロン スクリプト)

The following sample demonstrates the use of this tool in a stand-alone Python script:

'''****************************************************************************
Name: Skyline Example
Description: This script demonstrates how to use the 
             Skyline tool.
****************************************************************************'''
# Import system modules
import arcpy
import exceptions, sys, traceback
from arcpy import env

try:
    # Obtain a license for the ArcGIS 3D Analyst extension
    arcpy.CheckOutExtension('3D')
    # Set environment settings
    env.workspace = 'C:/data'
    # Set Local Variables
    inPts = "observers.shp"
    inLines = "skyline_outline.shp"
    baseVisibility = 25
    # Ensure output table has unique name
    outTable = arcpy.CreateUniqueName("angles_table.dbf")
    
    #Execute SkylineGraph
    arcpy.SkylineGraph_3d(inPts, inLines, 0, "ADDITIONAL_FIELDS", outTable)


except arcpy.ExecuteError:
    print arcpy.GetMessages()
except:
    # Get the traceback object
    tb = sys.exc_info()[2]
    tbinfo = traceback.format_tb(tb)[0]
    # Concatenate error information into message string
    pymsg = 'PYTHON ERRORS:\nTraceback info:\n{0}\nError Info:\n{1}'\
          .format(tbinfo, str(sys.exc_info()[1]))
    msgs = 'ArcPy ERRORS:\n {0}\n'.format(arcpy.GetMessages(2))
    # Return python error messages for script tool or Python Window
    arcpy.AddError(pymsg)
    arcpy.AddError(msgs)

環境

関連項目

ライセンス情報

ArcView: 必須 3D Analyst
ArcEditor: 必須 3D Analyst
ArcInfo: 必須 3D Analyst

7/10/2012