Create Feature Linked Annotation (Aeronautical)

Resumen

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

Uso

Sintaxis

CreateFeatureLinkedAnno_Aeronautical (input_instance, input_feature_class)
ParámetroExplicaciónTipo de datos
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

Ejemplo de código

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)

Entornos

Esta herramienta no utiliza ningún entorno de geoprocesamiento

Temas relacionados

Información de licencia

ArcView: No
ArcEditor: No
ArcInfo: Requiere Aeronautical Solution

9/30/2010