Class 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
      byte classification
      Classification.
      short[] color
      Color rgb info for styling (defaults to black).
      double gpsTime
      Gps timestamp
      double groundElevation
      Information about the ground elevation in the current point position (not contained in record and optional).
      short intensity
      The intensity value.
      short numberOfReturns
      Number of Returns (given pulse).
      int pointsDensity
      Density of points around the current point (not contained in record and optional).
      short returnNumber
      The return number.
      double x
      The x coordinate, with scale and offset already applied.
      double y
      The y coordinate, with scale and offset already applied.
      double z
      The 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).
    • Constructor Detail

      • LasRecord

        public LasRecord()