Trying to use the arcgis python command LAStoMultipoint_3d as seen here.
I'm running the code snippet against one of my LAS files. It creates a .shp, sbx, shp.xml, shx and dbf file. However, the files are empty.
The code is as follows:
#import script modules
import arcpy
from arcpy import env
arcpy.CheckOutExtension("3D")
env.workspace = "D:\myFolder\"
arcpy.LASToMultipoint_3d("D:/myFolder/myFile.las",
"D:/myFolder/Output" , 1.5)
print 'done'
The code executes and creates empty files. I have tried this with a half-dozen different files varying in size and complexity.