Import AIXM 5.1 to AIS (Aviation Data Management)

ライセンス レベル:BasicStandardAdvanced

サマリ

Imports Aeronautical Information Exchange Model (AIXM) data into an Aeronautical Information System (AIS) geodatabase. This tool decodes the rules and relationships defined in an AIXM 5.1 XML message and re-creates them in the AIS data model. AIXM messages are XML documents that conform to the AIXM XML schema.

使用法

構文

ImportAIXM51ToAIS_aviationmanagement (source_aixm5, geodatabase_sde, attribute_schema_mapper, {destcoordsys}, {aixm5_in_srs_axis_order_aixm5})
パラメータ説明データ タイプ
source_aixm5

The AIXM-XML data.

File
geodatabase_sde

Connection file to the geodatabase that is going to store the AIXM data in the AIS data model.

File
attribute_schema_mapper

The .csv file that contains the AIXM element to AIS attribute schema mapping rules. You can use AIXM51toESRI_Attribute.csv located in the Aviation Charting installation directory.

File
destcoordsys
(オプション)

Specifies a coordinate system for the data in the destination AIS geodatabase. The tool will reproject the data if necessary.

Spatial Reference
aixm5_in_srs_axis_order_aixm5
(オプション)

Specifies the axis order of coordinates in the Source AIXM5 File. Axis order indicates the order of coordinate latitude, longitude, and elevation values.

  • 1,2Coordinates are ordered as latitude, longitude.
  • 2,1Coordinates are ordered as longitude, latitude.
  • 1,2,3Coordinates are ordered as latitude, longitude, elevation.
  • 2,1,3Coordinates are ordered as longitude, latitude, elevation.
String

コードのサンプル

ImportAIXM51ToAIS example (Python window)

The following Python window script demonstrates how to use the ImportAIXM51ToAIS function.

# source AIXM xml data
srcAIXM = "\\\\server_name/GNAV_Aero/AIXM_Update_Obstacles.xml" 

# attribute schema map
attributeSchemaMap = "C:/Program Files/ArcGIS/ESRIAeronautical/Desktop10.1/DataExchange/AIXM/SchemaMapper/AIXMtoESRI_Attribute.csv"

# AIS workspace
aisWorkspace="c:/data/ais.sde"

# coordinate axis order
axisOrder="1,2"

# execute the import tool
arcpy.ImportAIXM51toAIS_aviationmanagement(srcAIXM, attributeSchemaMap, aisWorkspace,"", axisOrder)

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: 次のものが必要 Airports or Aviation Charting, and Data Interoperability
ArcGIS for Desktop Advanced: 次のものが必要 Airports or Aviation Charting, and Data Interoperability
4/26/2014