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

Create Coverage

Available with Advanced license.

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

Summary

Creates a new coverage.

The coverage can be initialized with the TIC, BND, and PRJ files copied from an existing coverage or grid.

Usage

  • The coordinate precision of the Output Coverage is determined by the Precision for derived coverages environment, regardless of whether the Template Coverage is specified.

  • To establish the location of the TICs in the Output Coverage, specify a Template Coverage or edit the Output Coverage manually. You can then use the Output Coverage as the destination (output) coverage of the Transform tool.

Syntax

arcpy.arc.Create(out_cover, {template_cover})
ParameterExplanationData Type
out_cover

The name of the coverage that will be created.

Coverage
template_cover
(Optional)

An existing coverage or grid whose TIC file, boundary information (BND file), and projection information (PRJ file) will be copied to the Output Coverage.

Coverage

Code sample

Create example (stand-alone script)

The following stand-alone script demonstrates how to create an empty coverage.

# Name: Create_Example.py
# Description: Creates an empty coverage.
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
import os

# Set local variables
outCover = "c:/output/emptycov"

# The output workspace must exist at least as an empty directory.
#    Use os.makedirs if the parent directory may not exist.
try:
    os.makedirs(os.path.dirname(outCover))
except:
    pass

# Execute Create
arcpy.Create_arc(outCover)

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 Advanced Workstation installed

Related topics

  • Create Feature Class
  • Create Table
  • An overview of the Workspace Management 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