Export AIS To AIXM 4.5 (Aviation Data Management)
Récapitulatif
This tool creates an Aeronautical Information Exchange Model (AIXM) 4.5 XML message from your Aeronautical Information System (AIS) geodatabase. AIXM messages are XML documents that conform to the AIXM 4.5 XML schema. The tool creates data based on the rules and relationships defined by the Aeronautical Information Conceptual Model (AICM) and AIXM 4.5 standards. This tool allows you to share your AIS data as XML.
Utilisation
-
This tool requires the Data Interoperability extension. Activate the Data Interoperability extension through the ArcGIS Customize > Extensions dialog box.
You can customize this tool. Right-click the tool in the ArcToolbox window and click Edit. The tool will open in the Data Interoperability Workbench.
The tool uses the Attribute Schema Mapper parameter to map AIS attributes to AIXM 4.5 elements. Attribute Schema Mapper are *.csv files that list the attribute mapping. You can use *.csv files provided with the ArcGIS for Aviation : Création de diagrammes. These files are installed in the <AviationCharting install dir>\DataExchange\AIXM\SchemaMapper folder.
This tool requires an ArcSDE geodatabase with the AIS schema. Use a connection file in the Input Workspace parameter.
Syntaxe
Paramètre | Explication | Type de données |
GEODBConnFile |
Connection file to the geodatabase that contains the AIS data. | Workspace |
AttributeSchemaMapper | The .csv file that defines the mapping of AIS attributes to AIXM 4.5 elements. If exporting from an Oracle geodatabase, use ESRItoAIXM_Oracle_Attribute.csv. If exporting from an SQL Server geodatabase, use ESRItoAIXM_SQLServer_Attribute.csv. | File |
DestDataset_AIXM |
The file that will contain the AIXM 4.5 XML. | File |
Exemple de code
The following Python window script demonstrates how to use the ExportAISToAIXM45 tool.
# schema mapper variable
attributeSchemaMap = "C:/Program Files/ArcGIS/ESRIAeronautical/Desktop10.1/DataExchange/AIXM/SchemaMapper/ESRItoAIXM_Oracle_Attribute.csv"
# connection to AIS db
aisWorkspace="c:/data/ais.sde"
# output file
outAixmDataset = "C:/data/Aero/AIStoAIXM_Export.xml"
# execute the export
arcpy.ExportAISToAIXM_aviationmanagement(attributeSchemaMap, aisWorkspace, outAixmDataset)