5

I downloaded about 9 LiDAR scenes from USGS and I want to use ArcMap to merge them so that I can carry out tasks on them together as opposed to one by one.

PolyGeo
65.5k29 gold badges115 silver badges350 bronze badges
asked Oct 2, 2018 at 20:36
2
  • 2
    You haven't mentioned what software you have or are prepared to obtain. In ArcGIS there is a concept of a LAS Dataset resources.arcgis.com/en/help/main/10.2/index.html#//… that will incorporate all LAS files into a single dataset. If you do not have ArcGIS you could try LASTools LAS2LAS -i *.las -o c:\your\path\Output.las to merge the files into a single las file rapidlasso.com/lastools/las2las. Note that neither of these packages are free but LASTools is cheaper, significantly so if you're a student or researcher, and has more tools for visualizing LAS data. Commented Oct 2, 2018 at 22:14
  • Thanks for this. I'm using ArcMap. Creating the dataset worked. Commented Oct 3, 2018 at 13:47

1 Answer 1

3

Some tasks are indeed better off processing tiles altogether so to avoid 'edge artifacts' (like creating a DEM).

In this case, work with tiles using tools that can process them on-the-fly, like ArcGIS. Create a LAS Dataset and work form there. For example: Converting LiDAR data to raster (DEM/DSM) for ArcGIS input?.

Or work on a full merged file. For example, with MergeData tool from Fusion:.

C:\Fusion\MergeData C:\lidar_data\*.las C:\lidar_data\output\alldata_merged.las

This will merge all .las files in directory C:\lidar_data, and will create a merged file named alldata_merged.las in the subfolder output.


Another option is larmerge from LAStools. See: Merging more than 9 input files with lasmerge?. LAStools can also merge files on-the-fly; take a look at examples from las2dem (search the switch -merged).

Still about LAStools, one can also use buffered tiles (also to avoid 'edge artifacts') while speeding up processing through parallel core usage.

answered Oct 2, 2018 at 22:14
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.