ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Region To Polygon Coverage

Available with Advanced license.

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

Converts a region subclass to a polygon coverage and creates an INFO table containing overlapping region information.

Learn more about how Region To Polygon Coverage works

Usage

  • All items in the region subclass polygon attribute table (PAT) are maintained in the Output Coverage PAT.

  • The Output Coverage PAT contains only the attributes of the first region associated with each polygon. Values of zero indicate void areas in which the subclass does not exist.

  • The attributes of the second to the Nth regions associated with each polygon are stored in the Output Table.

  • If only one region is associated with each polygon (a planar region subclass), then the Output Table does not need to be specified. However, an Output Table must be specified when using non-planar region subclasses.

  • The polygon User-IDs of the Output Coverage will be altered.

  • Use the Output Table to relate the Output Coverage polygons to the Input Coverage region subclass.

Syntax

arcpy.arc.RegionPoly(in_cover, out_cover, in_subclass, {out_table})
ParameterExplanationData Type
in_cover

The coverage containing the region subclass to convert to polygons.

Coverage
out_cover

The polygon coverage to be created from the Input Subclass. The coverage may not already exist.

Coverage
in_subclass

The region subclass of the Input Coverage that will be converted to a polygon coverage.

String
out_table
(Optional)

The output INFO table that will contain information for regions associated with each polygon.

INFO Table

Code sample

RegionPoly example (stand-alone script)

The following stand-alone script demonstrates how to create a polygon coverage from a region subclass.

# Name: RegionPoly_Example.py
# Description: Creates a polygon coverage from a region subclass
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
from arcpy import env

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

# Set local variables
inCover = "hydro"
outCover = "C:/output/genhydro"
inSubclass = "general"
outTable = "C:/output/genhydrotab"

# Execute RegionPoly
arcpy.RegionPoly_arc(inCover, outCover, inSubclass, outTable)

Environments

  • Current Workspace
  • Level Of Comparison Between Projection Files
  • Precision For Derived Coverages
  • Precision For New Coverages
  • Scratch Workspace

Licensing information

  • Basic: No
  • Standard: No
  • Advanced: Requires ArcInfo Workstation installed

Related topics

  • Import From DLG
  • An overview of the Composite Features toolset

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

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

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal