Generate Summary Table Data (Aviation)

获得 Aviation Charting 许可后可用。

摘要

Collects information from related tables in a selected aviation charting database and outputs the resulting information to a table.

Summary tables provide a compilation of information describing all the features of a given type that appear on an aviation chart. For example, they may provide information about all the airports that appear on the front and back of a two-sided chart. This tool gathers attribute information from various tables in the AIS that can be used to generate summary tables for aviation charts. Preferences can be created that determine which attributes are collected, allowing them to generate summary table data for various chart types.

使用情况

  • Preferences are stored in the AIS_Preferences table. To open the AIS_Preferences table, click the Aviation contextual tab and in Configuration group, click the Preferences button 首选项.

    You can also access references from the View tab. In the Windows group, click the Aviation drop-down arrow, and click the Preferences button 首选项.

  • Chart information must be present in the AIS_Charts table.

  • The selected output table must contain ChartID_Txt, Preference_Txt, and PanelID_Txt text fields.

  • If you run the Generate Summary Table Data tool on an enterprise database connection, you must refresh the user-generated output table, or close and re-open the table from the table of contents to see the new rows.

参数

标注说明数据类型
Target Geodatabase

The Aviation charting schema geodatabase.

Workspace
Input Preferences

The preferences stored in the database that control how, and for which charts, summary table information will be generated.

String
Charts Table

The table containing information specific to each chart processed by the tool according to preferences stored in the database.

Table View

派生输出

标注说明数据类型
Output Workspace

The workspace populated with information from related tables in the database, based on preferences.

Workspace

arcpy.aviation.GenerateSummaryTableData(target_geodatabase, in_preferences, in_charts_table)
名称说明数据类型
target_geodatabase

The Aviation charting schema geodatabase.

Workspace
in_preferences
[in_preferences,...]

The preferences stored in the database that control how, and for which charts, summary table information will be generated.

String
in_charts_table

The table containing information specific to each chart processed by the tool according to preferences stored in the database.

Table View

派生输出

名称说明数据类型
out_workspace

The workspace populated with information from related tables in the database, based on preferences.

Workspace

代码示例

GenerateSummaryTableData example (stand-alone script)

The following script demonstrates how to use the GenerateSummaryTableData function.

# Import system modules
import arcpy

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


# Set local variables
target_geodatabase = 'r"C:\data\AIS.gdb'
in_preferences = 'Preferences'
in_charts_table = r'c:\data\AIS.gdb\Charts'

# Call the GenerateSummaryTableData tool
arcpy.aviation.GenerateSummaryTableData(target_geodatabase, in_preferences,\
                                        in_charts_table)

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

环境

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

许可信息

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

相关主题