arcpy建立正方形shp
时间: 2024-06-14 10:06:52 浏览: 90
在ArcPy中建立正方形的shp文件,可以按照以下步骤进行操作:
1. 导入所需的模块和函数:
```python
import arcpy
from arcpy import env
```
2. 设置工作环境和输出路径:
```python
env.workspace = r'E:\data\test' # 文件根目录
outputFile = env.workspace + os.sep + 'square.shp' # 正方形shp文件路径
```
3. 创建一个空的shp文件,并添加字段:
```python
arcpy.CreateFeatureclass_management(env.workspace, 'square.shp', 'POLYGON')
arcpy.AddField_management(outputFile, 'ID', 'LONG')
```
4. 定义正方形的边长和中心点坐标:
```python
sideLength = 100 # 正方形边长
centerX = 500 # 正方形中心点x坐标
centerY = 500 # 正方形中心点y坐标
```
5. 计算正方形的四个顶点坐标:
```pythonxMin = centerX - sideLength / 2
xMax = centerX + sideLength / 2
yMin = centerY - sideLength / 2
yMax = centerY + sideLength / 2
```
6. 创建正方形的几何要素:
```python
array = arcpy.Array()
array.add(arcpy.Point(xMin, yMin))
array.add(arcpy.Point(xMin, yMax))
array.add(arcpy.Point(xMax, yMax))
array.add(arcpy.Point(xMax, yMin))
array.add(arcpy.Point(xMin, yMin))
polygon = arcpy.Polygon(array)
```
7. 插入正方形的几何要素和属性值到shp文件中:
```python
cursor = arcpy.da.InsertCursor(outputFile, ['SHAPE@', 'ID'])
cursor.insertRow([polygon, 1])
del cursor
```
完成以上步骤后,将会在指定的文件根目录下生成一个名为'square.shp'的正方形shp文件。
阅读全文