1.读的矢量文件属性表里有汉字的
代码中读写矢量文件这一步
r = shapefile.Reader("guangdong/guangdong.shp")
添加编码方式
r = shapefile.Reader("guangdong/guangdong.shp", encoding="gbk") #采用gbk编码!
注意用float类型读取landsat8波段
RED = gdal_array.LoadFile(b4).astype(float)
NRI = gdal_array.LoadFile(b5).astype(float)
1.新版本laspy中,读LAS文件由
from laspy import File
#------------------------------
path = "xx.las"
las = File.file(path,mode='r')
更换为
import laspy
#------------------------------
path = "xx.las"
las = laspy.open(path)
2.voronoi.py
479 newedge.a = dx / dy
改为
479 newedge.a = dx / (dy+float(1e-8))
3.主文件.py
w.poly([part])
改为
w.polyz([part]) # 注意要换成 polyz !!!