我是靠谱客的博主 哭泣花卷,最近开发中收集的这篇文章主要介绍arcgis 点坐标python_使用python读取矢量数据的坐标点如shp数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在ArcGIS中复制出矢量数据如shp、FeatureClass的坐标节点是一件很麻烦的事情,通过arcpy等模块读取坐标点到文本中方便了许多。

#读取要素的坐标点,包括挖空地块的坐标点,输出到excel文件中,外圈使用1,内圈使用-1标识。

import arcpy

... import xlwt

... fc=r"F:test.shp"

... cursor=arcpy.da.SearchCursor(fc,["OID@","字段1","字段2","SHAPE@"])

... xlsfile=xlwt.Workbook(encoding="utf-8")

... sht=xlsfile.add_sheet("sheet1","cell_overwrite_ok=True")

... rownum=0

... for feature in cursor:

... if not feature[3]:

... sht.write(rownum,0,feature[0])

... sht.write(rownum,1,"空几何")

... rownum=rownum+1

... continue

... else:

... for pa in feature[3]:

... j=0

... bsm=1

... for pnt in pa:

... if not pnt:

... bsm=-1

... j=0

... continue

... sht.write(rownum,0,feature[0])

... sht.write(rownum,1,feature[1])

... sht.write(rownum,2,feature[2])

... sht.write(rownum,3,j)

... sht.write(rownum,4,pnt.X)

... sht.write(rownum,5,pnt.Y)

... sht.write(rownum,6,bsm)

... rownum=rownum+1

... j=j+1

... xlsfile.save(r"F:test.xls")

效果图如下:

1326830-20181123095637598-1931919631.png

1326830-20181123095729552-739260483.png

最后

以上就是哭泣花卷为你收集整理的arcgis 点坐标python_使用python读取矢量数据的坐标点如shp数据的全部内容,希望文章能够帮你解决arcgis 点坐标python_使用python读取矢量数据的坐标点如shp数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部