Class LasRecord
- java.lang.Object
-
- org.hortonmachine.gears.io.las.core.LasRecord
-
public class LasRecord extends Object
Object containing the las record content plus some additional info.- Author:
- Andrea Antonello (www.hydrologis.com)
-
-
Field Summary
Fields Modifier and Type Field Description byteclassificationClassification.short[]colorColor rgb info for styling (defaults to black).doublegpsTimeGps timestampdoublegroundElevationInformation about the ground elevation in the current point position (not contained in record and optional).shortintensityThe intensity value.shortnumberOfReturnsNumber of Returns (given pulse).intpointsDensityDensity of points around the current point (not contained in record and optional).shortreturnNumberThe return number.doublexThe x coordinate, with scale and offset already applied.doubleyThe y coordinate, with scale and offset already applied.doublezThe z coordinate, with scale and offset already applied.
-
Constructor Summary
Constructors Constructor Description LasRecord()
-
-
-
Field Detail
-
x
public double x
The x coordinate, with scale and offset already applied.
-
y
public double y
The y coordinate, with scale and offset already applied.
-
z
public double z
The z coordinate, with scale and offset already applied.
-
intensity
public short intensity
The intensity value.
-
returnNumber
public short returnNumber
The return number.
-
numberOfReturns
public short numberOfReturns
Number of Returns (given pulse).
-
classification
public byte classification
Classification.
-
gpsTime
public double gpsTime
Gps timestamp
-
color
public short[] color
Color rgb info for styling (defaults to black).
-
groundElevation
public double groundElevation
Information about the ground elevation in the current point position (not contained in record and optional).
-
pointsDensity
public int pointsDensity
Density of points around the current point (not contained in record and optional).
-
-