1

I am want to examine my DEM, DSM, and other models I'm generating from LiDAR data in the model wizard to find the method with the least amount of error.

I want to separate the ground, and non-ground points into separate point shapefiles so I can use them within the model wizard and view the error and generate the error prediction surfaces as well as view the semi-variograms of different model parameters.

I would like to have points with the elevation value as a field within the point feature, and have a point feature for each class of the .lasd.

Andre Silva
  • 10,259
  • 12
  • 54
  • 106

1 Answers1

1

Assuming your LiDAR point cloud is already classified, use the LAS To Multipoint tool to both filter the point cloud (class_code parameter) and converting it to a (multi) point feature class (shapefile) in one go (use it once for each class code or group of class code).

Alternatively, you can filter with Make LAS Dataset Layer tool, so to keep one lidar (.lasd) file per class (in case you need to do other processing tasks using the point cloud format), and then use Las to Multipoint only to convert to point feature class.

As concerning having elevation in the table of attributes (TOC) one option is the Calculate Geomtetry tool. Take a look at Layers with same coordinate system should align/overlap in ArcMap but do not? (items 5 and 6, to see an example).


You might be interested reading Converting LiDAR data to raster (DEM/DSM) for ArcGIS input? as well.

Andre Silva
  • 10,259
  • 12
  • 54
  • 106