时间:2021-05-22
如下所示:
import shapefilesf = shapefile.Reader("E:\\1.2\\cs\\DX_CSL.shp")shapes = sf.shapes()print shapes[1].partsprint len(shapes) #79条记录#print len(list(sf.iterShapes())) #79条记录#for name in dir(shapes[3]): #不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表# if not name.startswith('__'):# print nameprint sf.numRecordsrecds = sf.records()for i in range(sf.numRecords): rcd = sf.record(i) #sp = rcd.shape 没有shape属性 #print sp.points#recds.shape#读取记录print sf.shapeRecord(1).shape.shapeTypeprint sf.shapeRecord(1).recordprint sf.fieldsprint '' for shp in range(len(shapes)): shap = shapes[shp] print shap.points print shap.shapeType print len(shap.points) for i in range(len(shap.points)): print shap.points[i] for x in range(len(shap.points[i])): print shap.points[i][x]以上这篇对python 读取线的shp文件实例详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
昨天要处理一个shp文件,读取里面的信息,做个计算然后写到后面新建的field里面。先写个外面网上都能找到的新建和读取吧。1.读取shp文件#-*-coding
java中Excel转shapefile的实例详解概述:本文讲述如何结合geotools和POI实现Excel到shp的转换,再结合前文shp到geojson数
Android读取资源文件实例详解本文主要介绍Android读取资源文件,直接从assets读取,从Raw文件中读取,InputStream转String。以下
python读取二进制mnist实例详解trainingdata数据结构:[offset][type][value][description]000032bit
python读取.txt(.log)文件、.xml文件、excel文件数据,并将数据类型转换为需要的类型,添加到list中详解1.读取文本文件数据(.txt结尾