Export AIXM 5.1 Message (Aviation)

Aviation Charting ライセンスで利用できます。

サマリー

Exports aeronautical data to an AIXM 5.1 message.

An AIXM message is a standard data exchange format for aeronautical data. AIXM is a well-established information exchange format in the aviation domain, and using aeronautical data in this format is an important step in the creation of an ArcGIS Aviation Charting product. This tool allows you to export data from an Aeronautical Information System (AIS) schema geodatabase as an AIXM message.

使用法

  • The Input Aviation Workspace parameter value must be a valid AIS schema geodatabase.

  • This tool exports data to an AIXM 5.1 message that is saved as an .xml file.

  • If you validate the output AIXM 5.1 message, you can store all validation messages in the Output Validation Log parameter value. This may be a benefit if you have a large amount of messages to store.

パラメーター

ラベル説明データ タイプ
Input Aviation Workspace

The Aeronautical Information System (AIS) schema workspace.

Workspace
Output Message File

The exported AIXM 5.1 message as an .xml file.

File
Export Type

Specifies the AIXM temporality type the message represents.

  • Baseline The message contains all features in a given message.
  • SnapshotThe message contains all features at a specific point in time.
  • Permanent DeltaThe message contains updates in a given time slice in features as a result of a baseline update.
  • Temporary DeltaThe message contains changes for some features in a given time slice representing a temporary event.
String
Last Modified Time
(オプション)

The date that will be used to filter the output to only features modified after that date.

Date
Input Filter Layers
(オプション)

The layers that will filter output to a smaller spatial subset.

Feature Layer
From Time
(オプション)

The starting time that will be applied to the validTime\beginPosition and featureLifetime\beginPosition fields in the output message types for any missing ValidFrom_Date or FeatureFrom_Date field values in the features to export. The tool converts the value to UTC. If the parameter is not specified, the current system date and time in UTC will be applied to the missing field values in the output message.

This parameter will be used differently depending on the Export Type parameter value.

  • Baseline—Honored only when the actual database record does not have the FromFeature_Date or ValidFrom_Date attributes populated.
  • Snapshot—Exports the parameter value provided irrespective of the FromFeature_Date and ValidFrom_Date attributes in the database.
  • Permanent Delta—Honored only when the actual database record does not have the FromFeature_Date or ValidFrom_Date attributes populated.
  • Temporary Delta—Honored only when the actual database record does not have the FromFeature_Date or the ValidFrom_Date attributes populated.
Date
To Time
(オプション)

The ending time that will be applied to the validTime\endPosition and featureLifetime\endPosition fields in the output message types for any missing ValidTo_Date or FeatureTo_Date field values in the features to export. The tool converts the value to UTC. If the parameter is not specified, the current system date and time in UTC will be applied to the missing field values in the output message.

This parameter is only valid when the Export Type parameter is set to Temporary Delta.

Date
Validate Output
(オプション)

Specifies whether XML validation will be performed on the exported message.

  • Checked—XML validation will be performed on the exported message.
  • Unchecked—XML validation will not be performed on the exported message. This is the default.
Boolean
Output Validation Log
(オプション)

The output XML validation log file.

File

arcpy.aviation.ExportAIXM51Message(in_aviation_workspace, out_message_file, export_type, {last_modified_time}, {in_filter_layers}, {from_time}, {to_time}, {validate_output}, {out_validation_log})
名前説明データ タイプ
in_aviation_workspace

The Aeronautical Information System (AIS) schema workspace.

Workspace
out_message_file

The exported AIXM 5.1 message as an .xml file.

File
export_type

Specifies the AIXM temporality type the message represents.

  • BASELINE The message contains all features in a given message.
  • SNAPSHOTThe message contains all features at a specific point in time.
  • PERM_DELTAThe message contains updates in a given time slice in features as a result of a baseline update.
  • TEMP_DELTAThe message contains changes for some features in a given time slice representing a temporary event.
String
last_modified_time
(オプション)

The date that will be used to filter the output to only features modified after that date.

Date
in_filter_layers
[in_filter_layers,...]
(オプション)

The layers that will filter output to a smaller spatial subset.

Feature Layer
from_time
(オプション)

The starting time that will be applied to the validTime\beginPosition and featureLifetime\beginPosition fields in the output message types for any missing ValidFrom_Date or FeatureFrom_Date field values in the features to export. The tool converts the value to UTC. If the parameter is not specified, the current system date and time in UTC will be applied to the missing field values in the output message.

This parameter will be used differently depending on the export_type parameter value.

  • BASELINE—Honored only when the actual database record does not have the FromFeature_Date or ValidFrom_Date attributes populated.
  • SNAPSHOT—Exports the parameter value provided irrespective of the FromFeature_Date and ValidFrom_Date attributes in the database.
  • PERM_DELTA—Honored only when the actual database record does not have the FromFeature_Date or ValidFrom_Date attributes populated.
  • TEMP_DELTA—Honored only when the actual database record does not have the FromFeature_Date or the ValidFrom_Date attributes populated.
Date
to_time
(オプション)

The ending time that will be applied to the validTime\endPosition and featureLifetime\endPosition fields in the output Baseline or Permanent Delta message types for any missing ValidTo_Date or FeatureTo_Date field values in the features to export. The tool converts the value to UTC. If the parameter is not specified, the current system date and time in UTC will be applied to the missing field values in the output message.

This parameter is only valid when the export_type parameter is set to TEMP_DELTA.

Date
validate_output
(オプション)

Specifies whether XML validation will be run on the exported message.

  • VALIDATEXML validation will be performed on the exported message.
  • NO_VALIDATEXML validation will not be performed on the exported message. This is the default.
Boolean
out_validation_log
(オプション)

The output XML validation log file.

File

コードのサンプル

ExportAIXM51Message example (stand-alone script)

The following code sample demonstrates how to use the ExportAIXM51Message function.

# Name: ExportAIXM51Message_example
# Description: Exports aeronautical data to an AIXM 5.1 message.

import arcpy

# Check out Aviation license

arcpy.CheckOutExtension("Aeronautical")

# Set variables

in_aviation_workspace = "D:\\data\\AIS.gdb"
out_message_file = "C:\\Users\\user1\\Documents\\My AIXM Message.xml"
export_type = "TEMP_DELTA"
last_modified_time = "1/1/2001 12:01:00 AM"
in_filter_layers = None
from_time = "1/1/2000 12:01:00 AM"
to_time = "1/1/2002 12:01:00 AM"
validate_output = "VALIDATE"
out_validation_log = "C:\\Users\\user1\\Documents\\Output Validation Log.txt"

# Execute ExportAIXM51Message

arcpy.aviation.ExportAIXM51Message(in_aviation_workspace, out_message_file, export_type, last_modified_time, in_filter_layers,
                                    from_time, to_time, validate_output, out_validation_log)

# Check in Aviation license

arcpy.CheckInExtension("Aeronautical")

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 ArcGIS Aviation Charting
  • Advanced: No