Import AIXM 5.1 Message (Aviation)

Mit der Aviation Charting-Lizenz verfügbar.

Zusammenfassung

Imports Aeronautical Information Exchange Model (AIXM) version 5.1 data into an aviation geodatabase.

AIXM is a well-established information exchange format in the aviation domain, and importing data in this format is the first step in the creation of an ArcGIS Aviation Charting product.

Hinweis:

The AIXM format is commonly referred to by its acronym in the aviation industry rather than the full name of Aviation Information Exchange Model. Consequently, the tool name reflects the common usage of the acronym.

Verwendung

  • An AIXM 5.1 file is commonly referred to as a message.

  • The optional Input Tables parameter will be populated by a list of existing tables and feature classes in the selected workspace for which an AIXM feature type exists. Selecting any of these will import only the selected feature types. Leaving all of them unselected will import the full message.

  • Optionally, you can update a database using the Update Existing Features parameter.

    Hinweis:

    This functionality will allow you to import an AIXM 5.1 message into an existing database and will use that message as a data update. This will match features between the new file and the database using the Clientkey_Id field (that corresponds with the gml:identifier field in the AIXM message). If a match is found, the feature will be updated based on the new message.

  • No datum transformation is performed by the tool. Input AIXM 5.1 geometry is expected to be expressed in either EPSG:4326 or OGC:CRS84 coordinate reference systems.

  • The spatial reference of the Target AIS geodatabase should be 'GCS_WGS_1984 WKID: 4326 Authority: EPSG'.

Parameter

BeschriftungErläuterungDatentyp
Input AIXM 5.1 Message File

The input AIXM 5.1 message.

File
Target Geodatabase

The ArcGIS Aviation Charting schema workspace where the AIXM message will be imported.

Workspace
Input Tables
(optional)

The names of tables used to restrict the feature types that will be imported.

String
Update Existing Features
(optional)

Specifies whether existing features will be updated or new features will be inserted.

  • Checked—Existing features will be updated.
  • Unchecked—Existing features will not be updated; new features will be inserted. This is the default.

Boolean

Abgeleitete Ausgabe

BeschriftungErläuterungDatentyp
Updated Geodatabase

The updated workspace.

Workspace

arcpy.aviation.ImportAIXM51Message(in_message_file, target_gdb, {in_tables}, {update_existing_features})
NameErläuterungDatentyp
in_message_file

The input AIXM 5.1 message.

File
target_gdb

The ArcGIS Aviation Charting schema workspace where the AIXM message will be imported.

Workspace
in_tables
[in_tables,...]
(optional)

The names of tables used to restrict the feature types that will be imported.

String
update_existing_features
(optional)

Specifies whether existing features will be updated or new features will be inserted.

  • UPDATE_EXISTINGExisting features will be updated.
  • CREATE_NEWExisting features will not be updated; new features will be inserted. This is the default.
Boolean

Abgeleitete Ausgabe

NameErläuterungDatentyp
updated_gdb

The updated workspace.

Workspace

Codebeispiel

ImportAIXM51Message example (Python window)

The following Python script demonstrates how to use the ImportAIXM51Message function.

import arcpy

# set gp environment
arcpy.CheckOutExtension("Aeronautical")

# AIXM 5.1 message to import
message = r"C:\data\AIXM51message.xml"

# Target Aviation schema database to import data to
target_gdb = r"C:\data\MyData.gdb"

# Running tool
arcpy.ImportAIXM51Message_aviation(message, target_gdb)

arcpy.CheckInExtension("Aeronautical")

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert ArcGIS Aviation Charting
  • Advanced: Erfordert ArcGIS Aviation Charting

Verwandte Themen