Generate Summary Table Data (Aviation)

Disponible con licencia de Aviation Charting.

Resumen

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 Aeronautical Information System (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.

Uso

  • 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 Preferencias.

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

  • Chart information must be present in the AIS_Charts table.

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

  • If you run this tool on an enterprise database connection, refresh the output table, or close and re-open the table from the table of contents to see the new rows.

Parámetros

EtiquetaExplicaciónTipo de datos
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

Salida derivada

EtiquetaExplicaciónTipo de datos
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)
NombreExplicaciónTipo de datos
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

Salida derivada

NombreExplicaciónTipo de datos
out_workspace

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

Workspace

Muestra de código

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')

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento.

Información de licenciamiento

  • Basic: No
  • Standard: Requiere ArcGIS Aviation Charting
  • Advanced: Requiere ArcGIS Aviation Charting

Temas relacionados