Show Navigation | Hide Navigation

Feature Class To Coverage (Conversion) (ArcInfo only)

Release 9.2
Last modified April 2, 2008
E-mail This Topic Printable Version Give Us Feedback


Related Topics

Creates a single ArcInfo coverage from one or more input feature classes or layers.


Usage tips

Command line syntax
An overview of the Command Line window
FeatureclassToCoverage_conversion <Features {Type};Features {Type}...> <out_cover> {cluster_tolerance} {DOUBLE | SINGLE}

Parameter Explanation Data Type
<Features {Type};Features {Type}...>

The input feature classes or layers used to create a single ArcInfo coverage, including the type of features the coverage will be composed of.

(Feature Layer String; Feature Layer String;...)
<out_cover>

The output coverage to be created.

Coverage
{cluster_tolerance}

The minimum distance separating all feature coordinates (nodes and vertices) as well as the distance a coordinate can move in X or Y (or both). You can set the value to be higher for data that has less coordinate accuracy and lower for datasets with extremely high accuracy.

Linear unit
{DOUBLE | SINGLE}

The precision of the output ArcInfo coverage.

Boolean
Data types for geoprocessing tool parameters


Command line example

Featureclasstocoverage_conversion "C:\workspace\harvestable.shp POLYGON;C:\workspace\stands.shp REGION" C:\workspace\studyarea 1.25 DOUBLE

Scripting syntax
About getting started with writing geoprocessing scripts
FeatureclassToCoverage_conversion (in_features, out_cover, cluster_tolerance, precision)

Parameter Explanation Data Type
in_features (Required)

The input feature classes or layers used to create a single ArcInfo coverage, including the type of features the coverage will be composed of.

(Feature Layer String; Feature Layer String;...)
out_cover (Required)

The output coverage to be created.

Coverage
cluster_tolerance (Optional)

The minimum distance separating all feature coordinates (nodes and vertices) as well as the distance a coordinate can move in X or Y (or both). You can set the value to be higher for data that has less coordinate accuracy and lower for datasets with extremely high accuracy.

Linear unit
precision (Optional)

The precision of the output ArcInfo coverage.

Boolean

Data types for geoprocessing tool parameters


Script example

import arcgisscripting
gp = arcgisscripting.create()

gp.workspace = "c:/test_data"
gp.featureclasstocoverage "harvestable.shp polygon; final_forest/polygon region; road.lyr arc",  "parkland", "1.25", "double" 

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.