Increase Polygon Area (Production Mapping)

License Level:BasicStandardAdvanced

Summary

Increases the areas of polygons until they meet a minimum size or larger. You can optionally limit the features to be enlarged based on whether they intersect another feature class.

Illustration

Increase Area functionality

Usage

Syntax

IncreasePolygonArea_production (Input_Polygon_Features, Minimum_Size, Buffer_Increase, {Intersect_Features}, {Barrier_Features})
ParameterExplanationData Type
Input_Polygon_Features

The polygon features to be enlarged.

Feature Layer
Minimum_Size

The minimum area that features must meet.

Areal unit
Buffer_Increase

The buffer value by which the area is increased for each feature. The buffer is applied until the feature reaches the minimum size.

Linear units
Intersect_Features
(Optional)

The feature class that intersects the input polygons. Input polygons that intersect are enlarged.

Feature Class
Barrier_Features
[Barrier_Features,...]
(Optional)

The feature class whose features serve as a boundary for the polygon features when they are enlarged. This ensures that the features do not cross a barrier when they are enlarged; for instance, a pond does not cross a road.

Feature Class

Code Sample

IncreasePolygonArea example (stand-alone script)

This sample script increases the area of parks until they are a minimum of 1,000 square feet.

# Name: IncreasePolygonArea_Example.py
# Description: Increases park area to a minimum of 1000 square feet.
# Author: Esri
# Date: February 2014

# Import arcpy module
import arcpy

# Check out Production Mapping license
arcpy.CheckOutExtension("Foundation")

# Set environment
arcpy.env.workspace="c:/data/LocalGovernment.gdb"

# Define variables
inFeatures="ReferenceData/FacilitySite"
inFeatureLyr="FaciltyLayer"
where="FCODE='Park'"
minArea="10000 SquareFeet"
bufferIncrease="100 Feet"

# Create a parks feature layer
arcpy.MakeFeatureLayer_management(inFeatures,inFeatureLyr,where)

# Execute IncreasePolygonArea
arcpy.IncreasePolygonArea_production(inFeatureLyr,minArea,bufferIncrease)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requires Production Mapping
ArcGIS for Desktop Advanced: Requires Production Mapping
6/12/2015