primera subida
This commit is contained in:
6
DEM/importLidar.py
Normal file
6
DEM/importLidar.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import numpy as np
|
||||
import laspy as lpinput_path="gdrive/My Drive/10-MEDIUM/DATA/Point Cloud Sample/"
|
||||
dataname="NZ19_Wellington.las"point_cloud=lp.file.File(input_path+dataname+".las", mode="r")
|
||||
|
||||
points = np.vstack((point_cloud.x, point_cloud.y, point_cloud.z)).transpose()
|
||||
colors = np.vstack((point_cloud.red, point_cloud.green, point_cloud.blue)).transpose()
|
||||
Reference in New Issue
Block a user