Calculate ATS Route Attributes (Aviation)

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

サマリー

Calculates segment distance and bearing attributes on Air Traffic Service (ATS) route features.

This tool calculates the magnetic track and reverse magnetic track based on the magnetic variation at the endpoints of routes.

使用法

  • The Input ATS Route Feature Layer parameter value must be a polyline.

  • If the ATS Route Attributes parameter is set to Magnetic Track or Reverse Magnetic Track, the Magnetic Variation Date parameter must be specified.

  • 注意:

    このツールを実行すると、入力データが変更されます。 詳細と不要なデータの変更を回避するための方法については、「入力データを変更または更新するツール」をご参照ください。

  • One or more of the following attributes can be specified for calculation. Calculated attributes will be written to the selected numeric fields in the Input ATS Route Feature Layer parameter value.

    • Length—The length of the route segment in nautical miles will be calculated.
    • True Track—The True North azimuth of the route segment's track from its start point will be calculated.
    • Reverse True Track—The True North azimuth of the route segment's reverse track from its end point will be calculated.
    • Magnetic Track—The Magnetic North azimuth of the route segment's track from its start point will be calculated.
    • Reverse Magnetic Track—The Magnetic North azimuth of the route segment's reverse track from its end point will be calculated.

  • The ATSRoute feature class in the AIS Charting data model can be used for the Input ATS Route Feature Layer parameter value. It contains the following fields that can be used as input fields: LENGTH_VAL, TRUETRACK_VAL, REVERSETRUETRACK_VAL, MAGTRACK_VAL, and REVERSEMAGTRACK_VAL.

パラメーター

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

The polyline features for which ATS route attributes will be calculated.

Feature Layer
ATS Route Attributes

Specifies the ATS route attributes that will be calculated.

  • Length—The length of the route segment in nautical miles will be calculated.
  • True Track—The True North azimuth of the route segment's track from its start point will be calculated.
  • Reverse True Track—The True North azimuth of the route segment's reverse track from its end point will be calculated.
  • Magnetic Track—The Magnetic North azimuth of the route segment's track from its start point will be calculated.
  • Reverse Magnetic Track—The Magnetic North azimuth of the route segment's reverse track from its end point will be calculated.
Value Table
Magnetic Variation Date
(オプション)

The date for which the magnetic field values will be calculated.

Date

派生した出力

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

The input ATS route feature layer with the updated fields.

Feature Layer

arcpy.aviation.CalculateATSRouteAttributes(in_features, atsroute_attributes, {magnetic_variation_date})
名前説明データ タイプ
in_features

The polyline features for which ATS route attributes will be calculated.

Feature Layer
atsroute_attributes
[atsroute_attributes,...]

Specifies the ATS route attributes that will be calculated.

  • LENGTH—The length of the route segment in nautical miles will be calculated.
  • TRUE_TRACK—The True North azimuth of the route segment's track from its start point will be calculated.
  • REVERSE_TRUE_TRACK—The True North azimuth of the route segment's reverse track from its end point will be calculated.
  • MAG_TRACK—The Magnetic North azimuth of the route segment's track from its start point will be calculated.
  • REVERSE_MAG_TRACK—The Magnetic North azimuth of the route segment's reverse track from its end point will be calculated.
Value Table
magnetic_variation_date
(オプション)

The date for which the magnetic field values will be calculated.

Date

派生した出力

名前説明データ タイプ
updated_features

The input ATS route feature layer with the updated fields.

Feature Layer

コードのサンプル

CalculateATSRouteAttributes example (stand-alone script)

The following script demonstrates how to use the CalculateATSRouteAttributes function.

import arcpy

# Check Out Aeronautical Extension
arcpy.CheckOutExtension("Aeronautical")

#Input ATS Route Feature Layer
in_features = r"C:\data\AIS.gdb\ATSRoutes"

#Add fields in the in_features if not exist already
arcpy.AddField_management(in_features, 'Length', 'DOUBLE')
arcpy.AddField_management(in_features, 'TRUETRACK_VAL', 'DOUBLE')
arcpy.AddField_management(in_features, 'REVERSETRUETRACK_VAL', 'DOUBLE')
arcpy.AddField_management(in_features, 'MAGTRACK_VAL', 'DOUBLE')
arcpy.AddField_management(in_features, 'REVERSE_MAG_TRACK', 'DOUBLE')

#Input ATS Route Attributes to be calculated
atsroute_attributes= "LENGTH Length;TRUE_TRACK TRUETRACK_VAL;REVERSE_TRUE_TRACK REVERSETRUETRACK_VAL;MAG_TRACK MAGTRACK_VAL;REVERSE_MAG_TRACK REVERSEMAGTRACK_VAL"

#Input Magnetic Variation Date
magnetic_variation="12/31/2021 10:52:18 AM"

# Exceute Calculate ATSRoute Attributes
arcpy.aviation.CalculateATSRouteAttributes(in_features, atsroute_attributes, magnetic_variation)

# Check In Aeronautical Extension
arcpy.CheckInExtension("Aeronautical")

環境

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

ライセンス情報

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

関連トピック