Skip to content

Commit 1e193ed

Browse files
update RELEASE_NOTES.md
1 parent 96d99e1 commit 1e193ed

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 5.2.10
2+
- LASzip importer now supports LAS 1.4
3+
- fix GenericChunk.Empty
4+
- add GenericChunk.Split
5+
16
### 5.2.9
27
- fixed ConvertToInline:rescaleIntensities, which failed for empty cells
38

src/Unofficial.laszip.netstandard/LASreadItemCompressed_POINT10_v2.cs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -205,20 +205,19 @@ public override void read(laszip_point item, ref uint context) // context is unu
205205
item.point_source_ID = last.point_source_ID;
206206
}
207207

208-
ArithmeticDecoder dec;
208+
readonly ArithmeticDecoder dec;
209209
LASpoint10 last = new LASpoint10();
210210

211211
readonly ushort[] last_intensity = new ushort[16];
212212
readonly StreamingMedian5[] last_x_diff_median5 = new StreamingMedian5[16];
213213
readonly StreamingMedian5[] last_y_diff_median5 = new StreamingMedian5[16];
214214
readonly int[] last_height = new int[8];
215-
216-
IntegerCompressor ic_dx;
217-
IntegerCompressor ic_dy;
218-
IntegerCompressor ic_z;
219-
IntegerCompressor ic_intensity;
220-
IntegerCompressor ic_point_source_ID;
221-
ArithmeticModel m_changed_values;
215+
readonly IntegerCompressor ic_dx;
216+
readonly IntegerCompressor ic_dy;
217+
readonly IntegerCompressor ic_z;
218+
readonly IntegerCompressor ic_intensity;
219+
readonly IntegerCompressor ic_point_source_ID;
220+
readonly ArithmeticModel m_changed_values;
222221
readonly ArithmeticModel[] m_scan_angle_rank = new ArithmeticModel[2];
223222
readonly ArithmeticModel[] m_bit_byte = new ArithmeticModel[256];
224223
readonly ArithmeticModel[] m_classification = new ArithmeticModel[256];

0 commit comments

Comments
 (0)