ラベル | 説明 | データ タイプ |
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.
| 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.
| 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.
| Boolean |
Output Validation Log (オプション) | The output XML validation log file. | File |
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.
パラメーター
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.
| 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.
| 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.
| Boolean |
out_validation_log (オプション) | The output XML validation log file. | File |
コードのサンプル
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