追加注记要素类 (Data Management)

许可等级:BasicStandardAdvanced

摘要

创建新的地理数据库注记要素类,或者通过合并多个输入地理数据库要素类中的注记将现有注记要素类追加到一个包含注记类的要素类中。

用法

语法

AppendAnnotation_management (input_features, output_featureclass, reference_scale, {create_single_class}, {require_symbol_from_table}, {create_annotation_when_feature_added}, {update_annotation_when_feature_modified})
参数说明数据类型
input_features
[input_features,...]

将在输出要素类中形成注记类的输入注记要素。

Feature Layer
output_featureclass

包含各输入注记要素类的注记类的新注记要素类。

Feature Class
reference_scale

在输出要素类中设置的参考比例。以不同参考比例创建的输入要素将进行变换以与此输出参考比例相匹配。

Double
create_single_class
(可选)

指定如何向输出要素类添加注记要素。

  • ONE_CLASS_ONLY所有注记要素都将被聚合到输出要素类的一个注记类中。
  • CREATE_CLASSES将为输出要素类中的每个输入注记类创建单独的注记类。
Boolean
require_symbol_from_table
(可选)

指定如何为新建的注记要素选择符号。

  • REQUIRE_SYMBOL仅允许使用输出要素类的符号集中的符号列表来创建注记要素。
  • NO_SYMBOL_REQUIRED允许使用任何符号系统来创建注记要素。
Boolean
create_annotation_when_feature_added
(可选)
许可许可:

仅当具有 ArcGIS for Desktop StandardArcGIS for Desktop Advanced许可时,此参数才可用。

指定是否在添加要素时创建关联要素的注记。

  • AUTO_CREATE在创建关联要素时使用标注引擎来放置关联要素的注记。
  • NO_AUTO_CREATE在创建要素时不放置关联要素的注记。
Boolean
update_annotation_when_feature_modified
(可选)
许可许可:

仅当具有 ArcGIS for Desktop StandardArcGIS for Desktop Advanced许可时,此参数才可用。

指定是否在关联要素发生更改时更新关联要素的注记。

  • AUTO_UPDATE在关联要素发生更改时使用标注引擎来更新关联要素的注记。
  • NO_AUTO_UPDATE在关联要素发生更改时不更新关联要素的注记。
Boolean

代码实例

AppendAnnotation 示例(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 AppendAnnotation 工具:

import arcpy
arcpy.env.workspace = "C:/data/Cobourg.gdb"
arcpy.AppendAnnotation_management("highways;roads", "transport_anno", 1200, "CREATE_CLASSES", "NO_SYMBOL_REQUIRED", "AUTO_CREATE", "AUTO_UPDATE")
AppendAnnotation 示例(独立 Python 脚本)

以下独立脚本演示了如何使用 AppendAnnotation 工具:

# Name: AppendAnnotation_Example.py
# Description: Use AppendAnnotation to append annotation feature classes in a geodatabase

# import system modules 
import arcpy, os
from arcpy import env

# Set environment settings - user specified
# User input geodatabase for annotation location - eg. C:/data/roads.gdb
env.workspace = raw_input('Location of geodatabase annotation: ')

# Create list of annotation feature classes within the geodatabase
fcList = arcpy.ListFeatureClasses("", "ANNOTATION")

# Set variables
# User input output feature class name - eg. appendedroadsAnno
outFeatureClass = env.workspace + os.sep + raw_input('Output annotation feature class name: ')
refScale = 1200
createClasses = "CREATE_CLASSES"
symbolReq = "NO_SYMBOL_REQUIRED"
autoCreate = "AUTO_CREATE"
autoUpdate = "AUTO_UPDATE"

try:
    # Process: Append the annotation feature classes
    print "Appending annotation feature classes..."
    arcpy.AppendAnnotation_management(fcList, outFeatureClass, refScale, createClasses, symbolReq, autoCreate, autoUpdate)
except:
    # If an error occurred while running a tool print the messages
    print arcpy.GetMessages()

print "Annotation feature classes in " + env.workspace + " have been appended into " + outFeatureClass

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 受限制
ArcGIS for Desktop Standard: 是
ArcGIS for Desktop Advanced: 是
5/10/2014