Generate Airspace Areas (Aviation)

获得 Aviation Charting 许可后可用。

摘要

Generates AirspaceArea features from Airspace features.

Overlapping three-dimensional Airspace features at various altitudes can be converted to two-dimensional AirspaceArea features. These converted features can be used as annotation to display the two-dimensional extent of an airspace on an aeronautical chart.

使用情况

  • The Input Airspace Features parameter value must be from the Airspace feature class from the AIS geodatabase schema.

    Learn more about the Airspace feature class

  • The Target Airspace Area Features parameter value must be from the AirspaceArea feature class from the AIS geodatabase schema.

    Learn more about the AirspaceArea feature class

    注:

    You can use this tool to update, delete, and create features for this feature class.

  • The Vertical Limit Override Table parameter value must be the VerticalLimitOverride table from the AIS geodatabase schema.

    Learn more about the VerticalLimitOverride table

  • The Area of Interest Features polygon feature class is used to set a boundary within which airspace polygon features will be processed. Airspace polygon features that wholly or partially overlap the area of interest (AOI) will be processed.

    注:

    The tool will only honor Area of Interest Features parameter values that are currently selected on a feature layer. If no AOI is selected, the tool will run using all features in the Area of Interest Features parameter.

  • You can use a definition query on your AOI features to limit the number of features that are processed.

  • You must populate the Preference Table value before running this tool. These preferences will define how the tool generates airspace lines. After a preference is created, you can update the attributes as necessary. You can also create multiple preferences by assigning a unique name to each preference in the table.

    This tool uses preferences to define the following properties:

    • Airspace Type— Limits processing to specific airspace types
    • Attribute filter (optional)—Uses an expression to control which airspace features are processed
    • Spatial selection—Limits processing to features that overlap and exist between specified high and low flight levels
    注:

    When creating a preferences, you must have an AOI feature class in your map's table of contents.

    Learn more about creating preferences

  • 警告:

    此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅修改或更新输入数据的工具

参数

标注说明数据类型
Input Airspace Features

The input Airspace features. These features adhere to the AIS geodatabase schema.

Feature Layer
Target Airspace Area Features

The target AirspaceArea feature class. These features adhere to the AIS geodatabase schema.

Feature Layer
Area of Interest Features

The area of interest boundary within which features will be processed.

Feature Layer
Preference Table

The table containing the specified preferences.

Table View
Preference

The preference derived from the Preference Table parameter that will be used to process the airspace features at the chosen altitudes..

String
Derived Airspace Parts
(可选)

The feature class that will be updated with airspace features derived from the Input Airspace Features parameter.

The feature class that will be updated with airspace features derived from the in_airspace_features parameter.

Feature Layer
Vertical Limit Override Table
(可选)

A table that overrides the vertical height values set in the preference table.

Table View

派生输出

标注说明数据类型
Updated Airspace Area Features

The updated AirspaceArea features.

Feature Layer

arcpy.aviation.GenerateAirspaceAreas(in_airspace_features, target_airspace_area_features, aoi_features, preference_table, preference, {derived_airspace_part_features}, {vertical_limit_override_table})
名称说明数据类型
in_airspace_features

The input Airspace features. These features adhere to the AIS geodatabase schema.

Feature Layer
target_airspace_area_features

The target AirspaceArea feature class. These features adhere to the AIS geodatabase schema.

Feature Layer
aoi_features

The area of interest boundary within which features will be processed.

Feature Layer
preference_table

The table containing the specified preferences.

Table View
preference

The preference derived from the preference_table parameter that will be used to process the airspace features at the chosen altitudes..

String
derived_airspace_part_features
(可选)

The feature class that will be updated with airspace features derived from the Input Airspace Features parameter.

The feature class that will be updated with airspace features derived from the in_airspace_features parameter.

Feature Layer
vertical_limit_override_table
(可选)

A table that overrides the vertical height values set in the preference table.

Table View

派生输出

名称说明数据类型
updated_airspace_area_features

The updated AirspaceArea features.

Feature Layer

代码示例

GenerateAirspaceAreas example (stand-alone script)

The following script demonstrates how to use the GenerateAirspaceAreas function.

# Name: GenerateAirspaceAreas_example.py
# Description: Generates AirspaceArea features from 
# input Airspace features.

import arcpy

# Check out extension
arcpy.CheckOutExtension("Aeronautical")

# Setup a workspace reference
arcpy.env.workspace = r"D:\Data.gdb"

# Parameters
in_airspace_features = "Airspace"
target_airspace_area_features = "AirspaceArea"
aoi_features = "AOI"
preference_table = "Preferences"
preference = "MyPreference"
derived_airspace_part_features = "AirspaceParts"

# Run the GenerateAirspaceAreas function
arcpy.aviation.GenerateAirspaceAreas(in_airspace_features, target_airspace_area_features, aoi_features, preference_table, preference, derived_airspace_part_features)

# Check in extension
arcpy.CheckInExtension("Aeronautical")

环境

此工具不使用任何地理处理环境。

许可信息

  • Basic: 否
  • Standard: 否
  • Advanced: 需要 ArcGIS Aviation Charting

相关主题