Create Feature Linked Annotation (Aeronautical)

Summary

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

Usage

Syntax

CreateFeatureLinkedAnno_Aeronautical (input_instance, input_feature_class)
ParameterExplanationData Type
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

Code Sample

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)

Environments

This tool does not use any geoprocessing environments

Related Topics

Licensing Information

ArcView: No
ArcEditor: No
ArcInfo: Requires Aeronautical Solution

11/3/2011