Hello Nick,
I assume you mean the average number of points per square meter. The tool that can do this is lasinfo with option '-cd' but also lasgrid with the option '-point_density_16bit' and some grid step size such as '-step 2'.
Here an example using the data set you posted in this thread:
The easiest is simply running lasinfo with the '-cd' option:
E:\LAStools\bin>lasinfo -i points.laz -nh -nv -nr -nmm -cd
lasinfo (171124) report for points.laz
covered area in square units/kilounits: 44328/0.04
point density: all returns 29.93 last only 29.93 (per square units)
spacing: all returns 0.18 last only 0.18 (in units)
And that shows us that the average spacing across the entire file is 29.93 returns per square meter. But we can also use lasgrid to create a raster that computes the density for every 2 by 2 meter cell and then output a histogram of the resulting raster entries with lasinfo to get a better idea of how the
E:\LAStools\bin>lasgrid -i points.laz -point_density_16bit -step 2 -odix _density_2m -obil
E:\LAStools\bin>lasinfo -i points_density_2m.bil -nh -nv -nr -nmm -histo z 4
lasinfo (171124) report for points_density_2m.bil
WARNING: there is coordinate resolution fluff (x10) in XY
WARNING: there is serious coordinate resolution fluff (x100) in XY
WARNING: for return 1 real number of points by return is 11082 but header entry was not set.
z coordinate histogram with bin size 4
bin [0,4) has 59
bin [4,8) has 58
bin [8,12) has 65
bin [12,16) has 54
bin [16,20) has 51
bin [20,24) has 387
bin [24,28) has 4263
bin [28,32) has 3341
bin [32,36) has 1325
bin [36,40) has 636
bin [40,44) has 495
bin [44,48) has 145
bin [48,52) has 37
bin [52,56) has 27
bin [56,60) has 22
bin [60,64) has 17
bin [64,68) has 15
bin [68,72) has 6
bin [72,76) has 12
bin [76,80) has 4
bin [80,84) has 4
bin [84,88) has 5
bin [88,92) has 7
bin [92,96) has 3
bin [96,100) has 4
bin [100,104) has 5
bin [104,108) has 2
bin [108,112) has 3
bin [112,116) has 6
bin [116,120) has 6
bin [120,124) has 2
bin [124,128) has 4
bin [128,132) has 4
bin [132,136) has 3
bin [136,140) has 1
bin [140,144) has 1
bin [144,148) has 1
bin [148,152) has 1
bin [160,164) has 1
average z coordinate 29.93178126691933 for 11082 element(s)