Matteo,
You also have to consider that a plot could straddle up to four tiles.
Have you considered using lascanopy? The advantage of this tool is that it works through a list of polygons provided in a shape file, one by one, and calculates the metrics you specify for all the points enclosed in each polygon. It then outputs the metrics in a csv file, one record per polygon. Since you are working with circular plots you may also provide the plots as a list of plot centre coordinates and radii in a simple text file (-loc argument). You use the merged laz file of merge a bunch of laz files on the fly using the –merged argument.
lascanopy will churn quite rapidly through 400 ha/197 plots. Note that lascanopy does not output the lidar points enclosed in the plots (which would be nice). The list of available metrics is extensive but I don’t know how it compares to those offered by FUSION.
Jan
--
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
Hi Matteo,
Usually I clip the plot-polygon on the tile because as you noted it is very fast, but later I have the inconvenience that Jan noted where there are plots in more than one tile.
My suggestion is, for large areas write a list with your plots and the intersected tiles, in the case that you have the plot 1 in two tiles, clip this plot in both tiles and later merge them in one plot.
For example:
lasclip -cores 2 -i %INPUT_LAS%\tile_n-th.laz -poly %INPUT_POLYGONS%\Plot_1.shp -odir %OUTPUT_DIR% -o Plot_1a.laz
lasclip -cores 2 -i %INPUT_LAS%\tile_n-th.laz -poly %INPUT_POLYGONS%\Plot_1.shp -odir %OUTPUT_DIR% -o Plot_1b.laz
After merging these two subplots to obtain plot 1 you can run cloudmetrics in FUSION.
Remember that if you use FUSION to clip the data you must use ClipData because PolyClipData doesn’t normalized the data.
Hopefully you have now a better idea of the general problem with the clipped plots and tile boundaries.
Cheers
Susana Gonzalez
Forest Engineer, LiDAR Science
Interpine Group Ltd
NZ Office : 07 350 3209 extn 722
Australia: 02 8011 3645
Fax : 07 345 7571
Address : 99 Sala Street, PO Box 1209, Rotorua 3010, New Zealand
Website :
www.interpine.co.nz
--
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 Vivian,
The only reason i was using the lasboundary step in the example that i gave was to generate *some* (obviously meaningless) shapefile that anyone would be able to reproduce from the available "fusa.laz" sample data set without me having to attach data to my email. Off course both - your shapefile as well as your (normalized?) LIDAR tiles - will come from elsewhere. The calls to lasclip and lascanopy should, however, have the same structure ...
The workflow you describe next can be realized with the '-interior' instead of the the '-split' flag.
lasclip -v -i ft_*.laz -poly fn.shp -odix _poly -olaz -cores 4
lasclip -v -i ft_*.laz -poly fn.shp -interior -odix _no_poly -olaz -cores 4
Regards,
Martin