Python中shapefile转换geojson的示例
程序员文章站
2024-01-26 22:10:46
shapefile转换geojson
import shapefile
import codecs
from json import dumps
# rea...
shapefile转换geojson
import shapefile import codecs from json import dumps # read the shapefile def shp2geo(file="line出产.shp"): reader = shapefile.reader(file) fields = reader.fields[1:] field_names = [field[0] for field in fields] buffer = [] for sr in reader.shaperecords(): record = sr.record record = [r.decode('gb2312', 'ignore') if isinstance(r, bytes) else r for r in record] atr = dict(zip(field_names, record)) geom = sr.shape.__geo_interface__ buffer.append(dict(type="feature", geometry=geom, properties=atr)) # write the geojson file geojson = codecs.open(file.split('.')[0] + "-geo.json", "w", encoding="gb2312") geojson.write(dumps({"type": "featurecollection", "features": buffer}, indent=2) + "\n") geojson.close() if __name__ == '__main__': # import os # for z,x,c in os.walk('.'): # for zz in c: # if zz.endswith(".shp"): # shp2geo(zz) # shp2geo(file='d.shp') shp2geo(file='ttttttttttt.shp')
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: python - 流程控制基础习题
下一篇: Linux下的消息队列
推荐阅读
-
Python中shapefile转换geojson的示例
-
浅析Js(Jquery)中,字符串与JSON格式互相转换的示例(直接运行实例)
-
Python中的字符串替换操作示例
-
python中递归记录指定后缀名的文件示例分享
-
使用python求斐波那契数列中第n个数的值示例代码
-
【python】numpy中的array格式数据切片与pandas中的dataframe格式数据切片、相互转换
-
Python语言编程学习:numpy中的array格式数据切片与pandas中的dataframe格式数据切片、相互转换
-
python 练习题:将列表中的大写字母转换成小写
-
python中pickle模块的常用函数及代码示例讲解
-
php中的字符编码转换函数用法示例,php示例_PHP教程