Wiki

Clone wiki

BaristaSource / UserGuide / ImportALS

Import Airborne Laserscanner Data

This is a tool for the import of a point cloud generated by Airborne Laserscanning.

Grafik

Import Airborne Laserscanner Data

The following parameters can be set:

  1. Input File: Pushing this button will open a dialog for selecting an input file and reference system properties identical to the dialog for import of 3D points.

  2. Format: Here you can select the file format.

  3. Pulse Mode: Here you have to specify whether the input file contains first pulse data, last pulse data, or both.

  4. Coordinate offset: Here you can specify a coordinate offset in X and Y relative to the coordinate type specified in the file selection dialog. For instance, if the coordinates are UTM coordinates with the UTM zone number put in front of the X coordinate, you may wish to reduce the X coordinates to real UTM coordinates here.

The TopoSys file format is a binary file format containing only the XYZ coordinates of the ALS points of one pulse for one strip and no other information. All the other file formats are ASCII formats having one ALS point per line, and each containing a subset of the following items:

  1. T: The time when the point was recorded.
  2. X: The X-coordinate of the point. XF is for the first pulse, XL for the last pulse.
  3. Y: The Y-coordinate of the point. YF is for the first pulse, YL for the last pulse.
  4. Z: The Z-coordinate of the point. ZF is for the first pulse, ZL for the last pulse.
  5. I: The Intensity of the returned signal for that point. IF is for the first pulse, IL for the last pulse.

The following table gives an overview about the format of ASCII files. The numbers have to be delimited by space characters.

ASCII File formats for different pulse modes Format | First pulse | Last pulse | First and Last pulse
---|---|---|---
XYZ | XF YF ZF | XL YL ZL | XL YL ZL XF YF ZF
XYZI | XF YF ZF IF | XL YL ZL IL | XL YL ZL IL XF YF ZF IF
XYZIT | XF YF ZF IF T | XL YL ZL IL T | XL YL ZL IL XF YF ZF IF T
TXYZ | T XF YF ZF | T XL YL ZL | T XL YL ZL XF YF ZF
TXYZI | T XF YF ZF IF | T XL YL ZL IL | T XL YL ZL IL XF YF ZF IF

Pushing the OK button will result in the file specified being read and transformed into an internal data structure that is written to a binary file on the disk. In this binary file, the points are organised in ALS strips, and inside the ALS strips they are organised in scanlines. In order to generate such a data structure, the data file has to contain the ALS points in the order in which they were recorded. Once the file has been read, an ALS node will be generated on the Thumbnail view.

Back to File Menu

Updated