ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Ayuda
  • Sign Out
ArcGIS Desktop

ArcGIS Online

La plataforma de representación cartográfica para tu organización

ArcGIS Desktop

Un completo SIG profesional

ArcGIS Enterprise

SIG en tu empresa

ArcGIS Developers

Herramientas para crear aplicaciones basadas en la ubicación

ArcGIS Solutions

Plantillas de aplicaciones y mapas gratuitas para tu sector

ArcGIS Marketplace

Obtén aplicaciones y datos para tu organización.

  • Documentación
  • Soporte
Esri
  • Iniciar sesión
user
  • Mi perfil
  • Cerrar sesión

ArcMap

  • Inicio
  • Introducción
  • Cartografiar
  • Analizar
  • Administrar datos
  • Herramientas
  • Extensiones

CreateFeatureLinkedAnnotation

  • Resumen
  • Debate
  • Sintaxis
  • Muestra de código

Resumen

Creates annotation for features on specific charts if it does not already exist. If the annotation feature class exists, the features are appended to the existing feature class.

Debate

As features are added to charts, annotation also needs to be added for these new features. This function can be used to append new annotation features to existing annotation feature classes based on what is in the chart. It can also create annotation for specific products based on the specified product library areas of interest and create advanced annotation such as Vertical Morse code.

Sintaxis

CreateFeatureLinkedAnnotation (aoi_info, data_frame, production_database, feature_class_list, {data_model})
ParámetroExplicaciónTipo de datos
aoi_info

An AviationChartInfo object that contains the information for the MapID for the areas of interest to be processed. The MapID can be retrieved using the GetAviationAOI function and will be formatted as Solution Name::Product Class Name::Series Name::Product Name::Instance Name::AOI Name.

AviationChartInfo
data_frame

The data frame for which the annotation will be created.

DataFrame
production_database

The path to the Aviation geodatabase that contains the chart data.

String
feature_class_list
[feature_class_list,...]

The feature classes where annotation needs to be created. The information required includes the name of the annotation feature class and the annotation classes. This means the feature class and annotation classes must be provided in the following format: ["FeatureClass1::Anno Class1/Anno Class2", "FeatureClass2::Anno Class1/Anno Class2/Anno Class3"].

String
data_model

The data model used to determine whether the MapID or MapID_Txt field is used to get the annotation information. Possible values are AIS or DOD.

(El valor predeterminado es AIS)

String

Muestra de código

CreateFeatureLinkedAnnotation example

This sample script updates annotation for a single chart.

# Name: CreateFeatureLinkedAnnotation.py
# Description: Creates annotation for an Alaskan chart
# Author: Esri
# Date: July 2014

# Import arcpyproduction and aviation modules
import arcpy
import arcpyproduction
from arcpyproduction import aviation
from arcpyproduction.aviation import charting

# Check out Aviation license
arcpy.CheckOutExtension("Aeronautical")


# Define dictionary
mxdDictionary = {
    "c:/data/AK_H02.mxd": {
        "AK H-2":"Aeronautical::IFR_Enroute::AK High::AK H-2::AK H-2::AK H-2 AOI"},
    "c:/data/AK_H01.mxd": {
       "AK H-1":"Aeronautical::IFR_Enroute::AK High::AK H-1::AK H-1::AK H-1 AOI",
       "Seattle Inset":"Aeronautical::IFR_Enroute::AK High::AK H-1::Seattle Inset::Seattle Inset AOI"}}


# Set variables
prodLib = "c:/data/FAA_PL.sde"
prodDatabase = "c:/data/FAA_PD.sde"
annoFCs = ["ADHP_C_A::Default"]

# Define mapidListfrom the mxdDictionary defined above
mapidList = list(set(mapidValue for dataframeList in mxdDictionary.values() for mapidValue in dataframeList.values()))


# Get Aviation AOI
mapObjects = charting.GetAviationAOI(prodLib,mapidList)

# Create feature-linked annotation
for mxdLocation in mxdDictionary.keys():

   mxd = arcpy.mapping.MapDocument(mxdLocation)
   dataframes = arcpy.mapping.ListDataFrames(mxd)

   for dataframe in dataframes:
       if mxdDictionary[mxdLocation].has_key(dataframe.name) == 0:
           continue
       mapid = mxdDictionary[mxdLocation][dataframe.name]
       charting.CreateFeatureLinkedAnnotation(mapObjects[mapid], dataframe, prodDatabase, annoFCs, "AIS")


# Check in Aviation license
arcpy.CheckInExtension("Aeronautical")

Temas relacionados

  • Creating feature-linked annotation using the Create Feature-Linked Annotation tool

ArcGIS Desktop

  • Inicio
  • Documentación
  • Soporte

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

Acerca de Esri

  • Quiénes somos
  • Empleo
  • Blog de Esri
  • Conferencia de usuarios
  • Cumbre de desarrolladores
Esri
Díganos su opinión.
Copyright © 2022 Esri. | Privacidad | Legal