I notice that Las2shp does not export point attributes to the shp file. eg class, intensity elevation etc. I can do it by exporting via a txt file but that seems to be very inefficient. I there a better way of doing it. Thanks
--
Download LAStools at
http://lastools.org
http://rapidlasso.com
Be social with LAStools at
http://facebook.com/LAStools
http://twitter.com/LAStools
http://linkedin.com/groups/LAStools-4408378
Manage your settings at
http://groups.google.com/group/lastools/subscribe
--
Hello,
This is correct. The (venerable) las2shp tool was written in the "good old days" when LiDAR surveys were small and point densities low so one could on occasions try to load the (at least the key-) points into the ArcGIS software for triangulation and rasterization or contouring. Only the xyz coordinates are exported and the DBF files are not populated. I usually tell people "if you want to convert LAS to SHP then your workflow must be highly suboptimal" ... (-:
Martin @rapidlasso
We usually use GlobalMapper to create our shp files but unfortunately GM puts some extra info into the CLASS attribute which our client does not like. Using 4 machines takes us about 12 hours and as Martin says is “highly suboptimal”. I could edit the dbf files but that may open another can of worms so a simple solution would be preferable. I’d be interested in giving your converter a try.
Thanks.
Hi,
Using a shp file for lidar data is a very bad idea if you have anything more than a few thousand points. Anything more and the user will not use it as loading it will be very slow and painful at best. It will be impossible over a file server.
If you need to see the file, I recommend using las2txt and then Cloud Compare (CC) software. With that, you can see what you have and visualize the data by field types. (It will also work with .las files).
The txt files can also be imported in ArcGis I guess or in QGIS (my preference). That is already much faster than using a shp file but slower than a specialized point viewer like CC or the lastools viewer. You could also rasterize the data in 1m pixel posting to view it more effectively in a GIS.
If you really want to use shape files with all the attributes, you could import the txt files directly in Qgis and convert them to shape files with all the fields. You can most likely use the processing plugin to script the workflow. The best would be to use GDAL translate directly in a loop. I would keep the files tiles under 1000x1000m for a 1 to 4 pt-m density. I imagine this can also all be done in ArcGIS.
Nicolas
--