@@ -10,6 +10,7 @@ struct Point0 <: Point
1010 synthetic:: Bool
1111 key_point:: Bool
1212 withheld:: Bool
13+ scan_angle_rank:: Int8
1314 user_data:: UInt8
1415 point_source_id:: UInt16
1516end
@@ -25,6 +26,7 @@ function Point0(rp, am)
2526 synthetic (rp),
2627 key_point (rp),
2728 withheld (rp),
29+ rp. scan_angle_rank,
2830 rp. user_data, rp. point_source_ID
2931 )
3032end
@@ -40,6 +42,7 @@ struct Point1 <: Point
4042 synthetic:: Bool
4143 key_point:: Bool
4244 withheld:: Bool
45+ scan_angle_rank:: Int8
4346 user_data:: UInt8
4447 point_source_id:: UInt16
4548 gps_time:: Dates.DateTime
@@ -56,6 +59,7 @@ function Point1(rp, am)
5659 synthetic (rp),
5760 key_point (rp),
5861 withheld (rp),
62+ rp. scan_angle_rank,
5963 rp. user_data, rp. point_source_ID,
6064 Dates. DateTime (rp)
6165 )
@@ -72,6 +76,7 @@ struct Point2 <: Point
7276 synthetic:: Bool
7377 key_point:: Bool
7478 withheld:: Bool
79+ scan_angle_rank:: Int8
7580 user_data:: UInt8
7681 point_source_id:: UInt16
7782 r:: N0f16
@@ -90,6 +95,7 @@ function Point2(rp, am)
9095 synthetic (rp),
9196 key_point (rp),
9297 withheld (rp),
98+ rp. scan_angle_rank,
9399 rp. user_data, rp. point_source_ID,
94100 reinterpret (N0f16, rp. rgb[1 ]),
95101 reinterpret (N0f16, rp. rgb[2 ]),
@@ -109,6 +115,7 @@ struct Point3 <: Point
109115 synthetic:: Bool
110116 key_point:: Bool
111117 withheld:: Bool
118+ scan_angle_rank:: Int8
112119 user_data:: UInt8
113120 point_source_id:: UInt16
114121 gps_time:: Dates.DateTime
@@ -128,6 +135,7 @@ function Point3(rp, am)
128135 synthetic (rp),
129136 key_point (rp),
130137 withheld (rp),
138+ rp. scan_angle_rank,
131139 rp. user_data, rp. point_source_ID,
132140 Dates. DateTime (rp),
133141 reinterpret (N0f16, rp. rgb[1 ]),
0 commit comments