Build (Покрытие)

Уровень лицензии:BasicStandardAdvanced

Резюме

Creates or updates feature attribute tables and polygon topology. Build is also used to synchronize polygon User-IDs with label point User-IDs.

Learn more about how Build works

Использование

Синтаксис

Build_arc (in_cover, feature_type, {anno_subclass})
ПараметрОбъяснениеТип данных
in_cover

The coverage to be built.

Coverage
feature_type

The feature class to be built.

  • POINTCreates a PAT for label points. This is the default option.
  • LINECreates an AAT for arcs.
  • POLYCreates a PAT and defines polygon topology.
  • NODECreates an NAT for nodes.
  • ANNOCreates a TAT for the Annotation Subclass.
String
anno_subclass
(дополнительно)

The name of the Annotation Subclass to be built.

String

Пример кода

Build example (stand-alone script)

The following stand-alone script demonstrates how to build line topology for a road coverage.

# Name: Build_Example.py
# Description: Builds line topology for a road coverage.
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
inCover = "road"
featureType = "LINE"

# Execute Build
arcpy.Build_arc(inCover, featureType)

Параметры среды

Связанные темы

Информация о лицензировании

ArcGIS for Desktop Basic: Нет
ArcGIS for Desktop Standard: Нет
ArcGIS for Desktop Advanced: Требует установленная ArcInfo Workstation
9/10/2013