Create Feature Linked Annotation (Aeronautical)

Zusammenfassung

Creates annotation for features in a specific chart if it does not already have annotation.

Verwendung

Syntax

CreateFeatureLinkedAnno_Aeronautical (input_instance, input_feature_class)
ParameterErläuterungDatentyp
input_instance
[input_instance,...]

The path to and name of the instance that you want to use to create annotation.

String
input_feature_class
[input_feature_class,...]

The feature classes where annotation can be created.

String

Codebeispiel

CreateFeatureLinkedAnno example (ArcGIS Python window)

This ArcGIS Python window example demonstrates the use of the CreateFeatureLinkedAnno function.

import arcpy

# Load Toolbox
arcpy.ImportToolbox(r'C:\Program Files\ArcGIS\Desktop10.0\ArcToolbox\Toolboxes\Aeronautical Tools.tbx')

# Local variables
Input_Chart_List = "Aeronautical::ENROUTE::ICAO::ICAO_Enroute_SanDiego::ICAO_Enroute_SanDiego"
Input_FeatureClass_List = "ADHP_C_Anno"

# Process: Create Anno
arcpy.CreateFeatureLinkedAnno_Aeronautical(Input_Chart_List, Input_FeatureClass_List)

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzinformationen

ArcView: Nein
ArcEditor: Nein
ArcInfo: Erfordert Aeronautical Solution

9/16/2010