创建渔网 (Data Management)

许可等级:BasicStandardAdvanced

摘要

创建由矩形像元组成的渔网。输出可以是折线或面要素。

了解有关“创建渔网”工作原理的详细信息

用法

语法

CreateFishnet_management (out_feature_class, origin_coord, y_axis_coord, cell_width, cell_height, number_rows, number_columns, {corner_coord}, {labels}, {template}, {geometry_type})
参数说明数据类型
out_feature_class

包含由矩形单元组成的渔网的输出要素类。

Feature Class
origin_coord

渔网的起始枢轴点。

Point
y_axis_coord

Y 轴坐标用于定向渔网。按照原点坐标与 y 轴坐标的连线所定义的角度旋转渔网。

Point
cell_width

确定每个单元的宽度。如果要使用行数参数值自动计算宽度,则将该值设置为零,这样在运行工具时便会计算宽度。

Double
cell_height

确定每个单元的高度。如果要使用列数参数值自动计算高度,则将该值设置为零,这样在运行工具时便会计算高度。

Double
number_rows

确定渔网所含的行数。如果要使用单元宽度参数值自动计算行数,则将该值设置为零,这样在运行工具时便会计算行数。

Long
number_columns

确定渔网所含的列数。如果要使用单元高度参数值自动计算列数,则将该值设置为零,这样在运行工具时便会计算列数。

Long
corner_coord
(可选)

X 坐标Y 坐标值设置的渔网的对角。

Point
labels
(可选)

指定是否在每个渔网单元中心创建包含标注点的点要素类。

  • LABELS创建带标注点的新要素类。这是默认设置。
  • NO_LABELS不创建标注点要素类。
Boolean
template
(可选)

指定渔网的范围。可通过指定坐标或使用模板数据集来输入范围。

  • 左 - X 最小值
  • 右 - X 最大值
  • 下 - Y 最小值
  • 上 - Y 最大值
Extent
geometry_type
(可选)

确定输出渔网单元是折线要素还是面要素。

  • POLYLINE输出是折线要素类。每个单元都由四个线要素定义。
  • POLYGON输出是面要素类。每个单元都由一个面要素定义。
String

代码实例

创建渔网 (CreateFishnet) 示例 1(Python 窗口)

以下 Python 窗口脚本演示了如何在即时模式下使用 CreateFishnet 函数。

import arcpy

# Create a fishnet with 9 columns and 9 rows
# with origin at (1, 1) and output geometry is set to default (POLYLINE)
arcpy.CreateFishnet_management("C:/data/output/fishnet1.shp", "1 1", "1 9", "1", "1", "9", "9", "#", "NO_LABELS")
CreateFishnet 示例 2(独立脚本)

以下独立脚本显示了如何使用 CreateFishnet 函数创建新的矩形单元(渔网)。

# Name: CreateFishnet.py
# Description: Creates rectangular cells

# import system module
import arcpy
from arcpy import env

# set workspace environment
env.workspace = "C:/data/output"

# Set coordinate system of the output fishnet
env.outputCoordinateSystem = arcpy.SpatialReference("NAD 1983 UTM Zone 11N")

outFeatureClass = "fishnet10by10.shp"

# Set the origin of the fishnet
originCoordinate = '1037.26 4145.81'

# Set the orientation
yAxisCoordinate = '1037.26 4155.81'

# Enter 0 for width and height - these values will be calcualted by the tool
cellSizeWidth = '0'
cellSizeHeight = '0'

# Number of rows and columns together with origin and opposite corner 
# determine the size of each cell 
numRows =  '10'
numColumns = '10'

oppositeCoorner = '19273.61 18471.17'

# Create a point label feature class 
labels = 'LABELS'

# Extent is set by origin and opposite corner - no need to use a template fc
templateExtent = '#'

# Each output cell will be a polygon
geometryType = 'POLYGON'

arcpy.CreateFishnet_management(outFeatureClass, originCoordinate, yAxisCoordinate, cellSizeWidth, cellSizeHeight, numRows, numColumns, oppositeCoorner, labels, templateExtent, geometryType)

环境

相关主题

许可信息

ArcGIS for Desktop Basic:是
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013