Enum Class LasRecordFormat

java.lang.Object
java.lang.Enum<LasRecordFormat>
com.gaia3d.converter.pointcloud.LasRecordFormat
All Implemented Interfaces:
Serializable, Comparable<LasRecordFormat>, Constable

public enum LasRecordFormat extends Enum<LasRecordFormat>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
     
    Point Data Record Format 0 contains the core 20 bytes that are shared by Point Data Record Formats 0 to 5.
    Point Data Record Format 10 adds Wave Packets to Point Data Record Format 7.
    Point Data Record Format 1 is the same as Point Data Record Format 0 with the addition of GPS Time.
    Point Data Record Format 3 is the same as Point Data Record Format 2 with the addition of GPS Time.
    Point Data Record Format 4 adds Wave Packets to Point Data Record Format 1.
    Point Data Record Format 5 adds Wave Packets to Point Data Record Format 3.
    Point Data Record Format 6 contains the core 30 bytes that are shared by Point Data Record Formats 6 to 10.
    Point Data Record Format 7 is the same as Point Data Record Format 6 with the addition of three RGB color channels.
    Point Data Record Format 8 is the same as Point Data Record Format 7 with the addition of a NIR (near infrared) channel.
    Point Data Record Format 9 adds Wave Packets to Point Data Record Format 6
  • Method Summary

    Modifier and Type
    Method
    Description
    fromFormatNumber(byte formatNumber)
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • FORMAT_0

      public static final LasRecordFormat FORMAT_0
    • FORMAT_1

      public static final LasRecordFormat FORMAT_1
      Point Data Record Format 0 contains the core 20 bytes that are shared by Point Data Record Formats 0 to 5.
    • FORMAT_2

      public static final LasRecordFormat FORMAT_2
      Point Data Record Format 1 is the same as Point Data Record Format 0 with the addition of GPS Time.
    • FORMAT_3

      public static final LasRecordFormat FORMAT_3
      Point Data Record Format 3 is the same as Point Data Record Format 2 with the addition of GPS Time.
    • FORMAT_4

      public static final LasRecordFormat FORMAT_4
      Point Data Record Format 4 adds Wave Packets to Point Data Record Format 1.
    • FORMAT_5

      public static final LasRecordFormat FORMAT_5
      Point Data Record Format 5 adds Wave Packets to Point Data Record Format 3.
    • FORMAT_6

      public static final LasRecordFormat FORMAT_6
      Point Data Record Format 6 contains the core 30 bytes that are shared by Point Data Record Formats 6 to 10. The difference to the core 20 bytes of Point Data Record Formats 0 to 5 is that there are more bits for return numbers in order to support up to 15 returns, there are more bits for point classifications to support up to 256 classes, there is a higher precision scan angle (16 bits instead of 8), and the GPS time is mandatory.
    • FORMAT_7

      public static final LasRecordFormat FORMAT_7
      Point Data Record Format 7 is the same as Point Data Record Format 6 with the addition of three RGB color channels. These fields are used when “colorizing” a LIDAR point using ancillary data, typically from a camera.
    • FORMAT_8

      public static final LasRecordFormat FORMAT_8
      Point Data Record Format 8 is the same as Point Data Record Format 7 with the addition of a NIR (near infrared) channel.
    • FORMAT_9

      public static final LasRecordFormat FORMAT_9
      Point Data Record Format 9 adds Wave Packets to Point Data Record Format 6
    • FORMAT_10

      public static final LasRecordFormat FORMAT_10
      Point Data Record Format 10 adds Wave Packets to Point Data Record Format 7.
  • Method Details

    • values

      public static LasRecordFormat[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LasRecordFormat valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromFormatNumber

      public static LasRecordFormat fromFormatNumber(byte formatNumber)