Create Thiessen Polygons (Analysis) (ArcInfo only) |
|
Release 9.2
Last modified January 13, 2009 |
![]() ![]() ![]() Print all topics in : "Tools" |
Converts input points to an output feature class of Thiessen proximal polygons.
Thiessen polygons have the unique property that each polygon contains only one input point, and any location within a polygon is closer to its associated point than to the point of any other polygon.
Illustration
Usage tips
Thiessen polygons can be used to apportion a point coverage into polygons known as Thiessen or Voronoi polygons. Each polygon contains only one Input Features point. Each polygon has the unique property that any location within the polygon is closer to the polygon's point than to the point of any other polygon.
The Thiessen polygons are constructed as follows:
The outside boundary of the Thiessen polygons is the extent of the points used plus an additional 10%. If the Extent environment is set to a specific set of values, CreateThiessenPolygons will use the environment to set its outside boundary.
The following environments affect this tool: configKeyword, extent, MDomain, outputCoordinateSystem, outputMFlag, outputZFlag, scratchWorkspace, spatialGrid1, spatialGrid2, spatialGrid3, workspace, XYDomain, and ZDomain.
Command line syntax
An overview of the Command Line window
CreateThiessenPolygons_analysis <in_features> <out_feature_class> {ONLY_FID | ALL}
Parameter | Explanation | Data Type |
<in_features> |
The points for which the Thiessen polygons will be generated. |
Feature Layer |
<out_feature_class> |
The polygon feature class that will contain the Thiessen features. |
Feature Class |
{ONLY_FID | ALL} |
Determines which attributes from the Input Features will be transferred to the Output Feature Class.
|
String |
createthiessenpolygons c:\basedata\wells.shp c:\analysis\thiessen_wells.shp ALL
Scripting syntax
About getting started with writing geoprocessing scripts
CreateThiessenPolygons_analysis (in_features, out_feature_class, fields_to_copy)
Parameter | Explanation | Data Type |
in_features (Required) |
The points for which the Thiessen polygons will be generated. |
Feature Layer |
out_feature_class (Required) |
The polygon feature class that will contain the Thiessen features. |
Feature Class |
fields_to_copy (Optional) |
Determines which attributes from the Input Features will be transferred to the Output Feature Class.
|
String |
import arcgisscripting gp = arcgisscripting.create() gp.workspace = "c:/basedata" gp.toolbox = "analysis" gp.createthiessenpolygons("wells.shp", "thiessen_wells.shp", "ONLY_FID")