Package com.gaia3d.converter.pointcloud
Enum Class LasRecordFormat
- All Implemented Interfaces:
Serializable
,Comparable<LasRecordFormat>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionPoint 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 TypeMethodDescriptionstatic LasRecordFormat
fromFormatNumber
(byte formatNumber) static LasRecordFormat
Returns the enum constant of this class with the specified name.static LasRecordFormat[]
values()
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
-
Enum Constant Details
-
FORMAT_0
-
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
Point Data Record Format 1 is the same as Point Data Record Format 0 with the addition of GPS Time. -
FORMAT_3
Point Data Record Format 3 is the same as Point Data Record Format 2 with the addition of GPS Time. -
FORMAT_4
Point Data Record Format 4 adds Wave Packets to Point Data Record Format 1. -
FORMAT_5
Point Data Record Format 5 adds Wave Packets to Point Data Record Format 3. -
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
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
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
Point Data Record Format 9 adds Wave Packets to Point Data Record Format 6 -
FORMAT_10
Point Data Record Format 10 adds Wave Packets to Point Data Record Format 7.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
fromFormatNumber
-