ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • 主页
  • 入门
  • 地图
  • 分析
  • 管理数据
  • 工具
  • 扩展模块

Increase Polygon Area

获得 Production Mapping 许可后可用。

  • 描述
  • 插图
  • 使用方法
  • 语法
  • 代码示例
  • 环境
  • 许可信息

描述

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.

插图

Increase Area functionality

使用方法

    警告:

    此工具会修改输入数据。有关详细信息以及避免数据被意外更改的策略,请参阅不创建输出数据集的工具。

  • 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.

语法

arcpy.production.IncreasePolygonArea(Input_Polygon_Features, Minimum_Size, Buffer_Increase, {Intersect_Features}, {Barrier_Features})
参数说明数据类型
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
(可选)

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

Feature Layer
Barrier_Features
[Barrier_Features,...]
(可选)

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

代码示例

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)

环境

  • 当前工作空间
  • 临时工作空间

许可信息

  • Basic: 否
  • Standard: 否
  • Advanced: 需要 Production Mapping

相关主题

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

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • Esri 博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2021 Esri. | 隐私政策 | 法律声明