更新覆盖 (制图)

许可等级:BasicStandardAdvanced

摘要

将要素制图表达覆盖从默认覆盖字段传递到该制图表达的制图表达规则中定义的显式字段中。

警告警告:

更新几何覆盖将使几何覆盖从制图表达覆盖字段传递到 Shape 字段。要素的原始几何将被覆盖。

用法

语法

UpdateOverride_cartography (in_features, representation, {update_option})
参数说明数据类型
in_features

包含至少一个制图表达的输入要素图层。

Feature Layer
representation

包含要传递到显式字段中的覆盖的制图表达。

String
update_option
(可选)

指定要传递到显式字段中的制图表达覆盖的类型。

  • REPRESENTATION_PROPERTY_OVERRIDE仅传递制图表达属性覆盖。这是默认设置。
  • GEOMETRY_OVERRIDE仅将制图表达几何覆盖传递到 Shape 字段。要素的原始几何将被覆盖。
  • BOTH传递制图表达属性和几何覆盖。制图表达几何覆盖将传递到 Shape 字段,从而覆盖要素的原始几何。
String

代码实例

UpdateOverride 工具示例(Python 窗口)

以下 Python 窗口脚本演示了如何在立即模式下使用 UpdateOverride 工具。

import arcpy from arcpy import env env.workspace = "C:/data" arcpy.UpdateOverride_cartography("footprints.lyr", "footprints_Rep", "BOTH")
UpdateOverride 工具示例(独立 Python 脚本)

此独立脚本显示的是使用 UpdateOverride 工具的示例。

# Name: UpdateOverride_standalone_script.py
# Description: Transfers feature representation overrides
#              from the default override field to explicit fields
#              as defined by the representation rules
#              in the representation.

 
# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
in_features = "footprints.lyr"
representation = "footprints_Rep"
update_option = "BOTH"

# Execute Update Override
arcpy.UpdateOverride_cartography(in_features, representation, update_option)

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 是
ArcGIS for Desktop Advanced: 是
5/10/2014