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

Increase Polygon Area

Available with Production Mapping license.

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

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

    Caution:

    This tool modifies the input data. See Tools that do not create output datasets for more information and strategies to avoid undesired data changes.

  • A warning is raised if the input features are not in a projected coordinate system. This tool relies on linear distance units, which will create unexpected results in an unprojected coordinate system. It is strongly suggested that you run this tool on data in a projected coordinate system to ensure valid results. An error is raised and the tool will not process if the coordinate system is missing or unknown.

  • Features are enlarged in all directions by applying a small buffer iteratively until the feature is larger than the minimum size. The resulting geometry will be larger than the minimum size and not equal to it.

  • If this tool is run in an edit session in ArcMap, you can stop the edit session without saving changes to restore features that have been deleted.

Syntax

arcpy.production.IncreasePolygonArea(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 unit
Intersect_Features
(Optional)

The features that intersect the input polygons. Input polygons that intersect are enlarged.

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

The features that 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 Layer

Code sample

IncreasePolygonArea example (stand-alone script)

The following stand-alone sample script demonstrates how to use Increase Polygon Area.

# Name: IncreasePolygonArea_Example.py
# Description: Increases park area to a minimum of 10,000 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

  • Current Workspace
  • Scratch Workspace

Licensing information

  • Basic: No
  • Standard: No
  • Advanced: Requires Production Mapping

Related topics

  • An overview of the Generalization toolset
  • Increase Line Length
  • Convert Polygons
  • Aggregate Polygons
  • Modify Underlying Polygon

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