标注 | 说明 | 数据类型 |
输出要素类 | 包含镶嵌格网的输出要素类的路径和名称。 | Feature Class |
范围 | 细分曲面将覆盖的范围。 该范围可以是当前可见区域、数据集的范围或手动输入值。
| Extent |
形状类型 (可选) | 指定将生成的形状。
| String |
大小 (可选) | 构成镶嵌的每个形状的面积。 | Areal Unit |
空间参考 (可选) | 输出数据集将投影到的空间参考。 如果未提供空间参考,则输出将被投影到输入范围的空间参考中。 如果空间参考也不存在,则输出将被投影到 GCS_WGS_1984。 | Spatial Reference |
摘要
用于生成覆盖给定范围的正多边形要素的镶嵌格网。 该镶嵌可以是三角形、正方形、菱形、六边形或横向六边形。
插图
使用情况
要确保整个输入范围被细分面格网覆盖,可有意使输出要素的范围超出输入范围。 出现这种情况的原因是镶嵌格网的边缘不总是直线,且如果用输入范围限制格网,可能会有间距出现。
输出要素中包含 GRID_ID 字段。 GRID_ID 字段可为输出要素类中的每个要素提供唯一的 ID。 ID 的格式为 A-1、A-2、B-1、B-2 等等。 这便于利用按属性选择图层工具中的查询选择行和列。 例如,使用 GRID_ID like 'A-%' 选择列 A 中的所有要素,或使用 GRID_ID like '%-1' 选择行 1 中的所有要素。
要生成不包括细分曲面要素的格网(不与另一数据集中的要素相交),请使用按位置选择图层工具选择包含源要素的输出面,并使用复制要素工具生成所选输出要素的永久副本,并将其复制到新的要素类。
该工具将按面积单位生成形状。 要根据边长确定形状的面积,请使用以下公式之一来计算 Size 参数的值:
Shape 公式 示例 六边形或横向六边形
要生成边长为 100 米的六边形,请将 Size 参数值指定为 25980.76211353316 平方米(100 的 2 次方乘以 3 乘以 3 的平方根除以 2)。
正方形
要生成边长为 100 米的正方形,请将 Size 参数值指定为 10000 平方米(100 的 2 次方)。
菱形
要生成边长为 100 米的菱形,请将 Size 参数值指定为 10000 平方米(100 的 2 次方)。
三角形
要生成边长为 100 米的三角形,请将 Size 参数值指定为 4330.127018922193 平方米(100 的 2 次方乘以 3 的平方根除以 4)。
参数
arcpy.management.GenerateTessellation(Output_Feature_Class, Extent, {Shape_Type}, {Size}, {Spatial_Reference})
名称 | 说明 | 数据类型 |
Output_Feature_Class | 包含镶嵌格网的输出要素类的路径和名称。 | Feature Class |
Extent | 细分曲面将覆盖的范围。 该范围可以是当前可见区域、数据集的范围或手动输入值。
| Extent |
Shape_Type (可选) | 指定将生成的形状。
| String |
Size (可选) | 构成镶嵌的每个形状的面积。 | Areal Unit |
Spatial_Reference (可选) | 输出数据集将投影到的空间参考。 如果未提供空间参考,则输出将被投影到输入范围的空间参考中。 如果空间参考也不存在,则输出将被投影到 GCS_WGS_1984。 | Spatial Reference |
代码示例
以下 Python 窗口脚本演示了如何在即时模式下使用 GenerateTesselation 函数。
import arcpy
tessellation_extent = arcpy.Extent(0.0, 0.0, 10.0, 10.0)
spatial_ref = arcpy.SpatialReference(4326)
arcpy.management.GenerateTessellation(r"C:\data\project.gdb\hex_tessellation",
tessellation_extent, "HEXAGON",
"100 SquareMiles", spatial_ref)
以下独立 Python 脚本可演示如何以编程方式从要素类提取范围,以及如何使用该范围填充 GenerateTessellation 函数的参数。
# Name: GenerateDynamicTessellation.py
# Purpose: Generate a grid of squares over the envelope of a provided feature
# class.
# Import modules
import arcpy
# Set paths of features
my_feature = r"C:\data\project.gdb\myfeature"
output_feature = r"C:\data\project.gdb\sqtessellation"
# Describe the input feature and extract the extent
description = arcpy.Describe(my_feature)
extent = description.extent
# Find the width, height, and linear unit used by the input feature class' extent
# Divide the width and height value by three.
# Multiply the divided values together and specify an area unit from the linear
# unit.
# Should result in a 4x4 grid covering the extent. (Not 3x3 since the squares
# hang over the extent.)
w = extent.width
h = extent.height
u = extent.spatialReference.linearUnitName
area = "{size} Square{unit}s".format(size=w/3 * h/3, unit=u)
# Use the extent's spatial reference to project the output
spatial_ref = extent.spatialReference
arcpy.management.GenerateTessellation(output_feature, extent, "SQUARE", area,
spatial_ref)
许可信息
- Basic: 是
- Standard: 是
- Advanced: 是