Generate Changeover Points (Aviation)

Aviation Charting ライセンスで利用できます。

サマリー

Creates changeover points along routes.

This tool creates changeover point features, deriving the point's location from a changeover distance provided on the input features. It also calculates secondary attributes on the target changeover point features that support symbology and labeling on a chart.

使用法

  • The Target Changeover Point Features parameter value must contain the following attributes: DISTANCE1_VAL (Double), DISTANCE2_VAL (Double), CARTOANGLE_VAL (Double), and ATSROUTE_ID (GUID).

  • Specify a Distance Source Type parameter value that is appropriate for the data. The changeover distance for a route is often stored on the Input ATS Route Features parameter value but can be stored on the Target Changeover Point Features parameter value in some cases. This parameter identifies the input that contains the changeover distance value.

    • Choose the Route option for the Distance Source Type parameter if changeover distances are stored on a route segment feature in the ATSRoute or other line feature class. In this case, the changeover distance must be stored in an attribute named COPDIST_VAL (Double). The tool inserts new changeover points into the target point layer or updates existing changeover point features.
    • Choose the Point option for the Distance Source Type parameter if changeover distances are stored on a changeover point feature in the target point later. In this case, the changeover distance must be stored in an attribute named DISTANCE1_VAL (Double), and an attribute named ATSROUTE_ID (GUID) must be populated with the GFID value of the corresponding route feature. The tool updates the geometry and attributes of the changeover point features accordingly.

パラメーター

ラベル説明データ タイプ
Input ATS Route Features

The input feature class of routes on which changeover points are based. It must contain polyline features.

Feature Layer
Target Changeover Point Features

The point feature class that contains the changeover points. After running the tool, new changeover points are added and existing changeover points are updated.

Feature Layer
Distance Source Type

Specifies the source of the changeover distance value.

  • RouteThe changeover distances are stored in the source line layer.
  • PointThe changeover distances are stored in the target point layer.
String

派生した出力

ラベル説明データ タイプ
Updated Point Features

The output features for changeover points.

Feature Layer

arcpy.aviation.GenerateChangeoverPoints(in_features, target_changeover_features, distance_source_type)
名前説明データ タイプ
in_features

The input feature class of routes on which changeover points are based. It must contain polyline features.

Feature Layer
target_changeover_features

The point feature class that contains the changeover points. After running the tool, new changeover points are added and existing changeover points are updated.

Feature Layer
distance_source_type

Specifies the source of the changeover distance value.

  • ROUTEThe changeover distances are stored in the source line layer.
  • POINTThe changeover distances are stored in the target point layer.
String

派生した出力

名前説明データ タイプ
updated_features

The output features for changeover points.

Feature Layer

コードのサンプル

GenerateChangeoverPoints example (stand-alone script)

The following script demonstrates how to use the GenerateChangeoverPoints function.


# Import system modules
import arcpy

# Check out extensions
arcpy.CheckOutExtension('Aeronautical')

# Set local variables
in_features = r"C:\data\AIS.gdb\ATSRoutes"
target_changeover_features = r"C:\data\AIS.gdb\ChangeOver"
distance_source = 'ROUTE'

# Call the GenerateChangeoverPoints tool 
arcpy.aviation.GenerateChangeoverPoints(in_features, target_changeover_features,\
                                        distance_source)

# Check in extensions
arcpy.CheckInExtension('Aeronautical')

環境

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

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 ArcGIS Aviation Charting
  • Advanced: 次のものが必要 ArcGIS Aviation Charting

関連トピック