forked from LASzip/LASzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1107 lines (888 loc) · 59.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2018-03-22
* Howard Butler <[email protected]> call vcvars (03:41:11)
* Howard Butler <[email protected]> Merge branch 'master' of github.com:LASzip/LASzip (03:39:49)
* Howard Butler <[email protected]> VC vars (03:39:11)
2018-03-21
* Howard Butler <[email protected]> use laszip3 as DLL name for new builds on windows (08:34:15)
* Howard Butler <[email protected]> fix doc version (08:29:18)
* Howard Butler <[email protected]> point to 3.2.0 release (08:25:52)
* Howard Butler <[email protected]> fix LASZIP_VERSION_BUILD_DATE (08:21:21)
* Howard Butler <[email protected]> configure environment (07:51:08)
* Howard Butler <[email protected]> whitespace normalization (07:49:14)
* Howard Butler <[email protected]> use 2017 for appveyor builds (07:48:06)
* Howard Butler <[email protected]> remove matrix (06:04:53)
* Howard Butler <[email protected]> appveyor builds (06:01:40)
* Howard Butler <[email protected]> set version to 3.2.0 (06:01:30)
* Howard Butler <[email protected]> Create README.rst (05:31:12)
2018-03-19
* Howard Butler <[email protected]> make sure to compile lasreaditemcompressed_v4.cpp laswriteitemcompressed_v4.cpp too (11:10:47)
2018-02-09
* Martin Isenburg <[email protected]> version increment to 3.2 (can read v4 compressed items) (03:56:42)
* Martin Isenburg <[email protected]> prepare to correct 'context switch' bug reported by Wanwannodao (03:45:51)
* Martin Isenburg <[email protected]> better WARNINGS and fix for MSVC2013 C4258 warning about shadowed 'i' value (03:35:20)
* Martin Isenburg <[email protected]> small fix in set_extended_classification() (03:27:38)
* Martin Isenburg <[email protected]> define fixes for std::unordered_map by Evon (03:26:09)
2018-01-29
* Howard Butler <[email protected]> Merge pull request #41 from pblottiere/fix_install (09:51:34)
* Blottiere Paul <[email protected]> Fix install of laszip_api_version.h (08:03:55)
2018-01-12
* Howard Butler <[email protected]> Merge pull request #38 from hobu/laszip-4.0-work-ticket (09:47:10)
2018-01-02
* Howard Butler <[email protected]> another include install path attempt (10:54:31)
* Howard Butler <[email protected]> bump version to 4.0.0 (10:43:22)
* Howard Butler <[email protected]> include install location broken (10:43:15)
2017-10-19
* Howard Butler <[email protected]> Merge pull request #33 from gadomski/load-dll-on-debian (13:02:11)
* Pete Gadomski <[email protected]> Load .so dll on non-apple (12:06:55)
2017-10-10
* Howard Butler <[email protected]> download link for release (14:24:34)
* Howard Butler <[email protected]> increment versions for 3.1.1 release (14:04:35)
* Howard Butler <[email protected]> ChangeLog refresh (13:47:49)
2017-10-09
* Howard Butler <[email protected]> Merge pull request #31 from kbevers/dk-lidar (09:38:12)
* Kristian Evers <[email protected]> Moved link to Danish LiDAR to LAZ section of data providers and updated link (09:35:22)
2017-10-02
* Martin Isenburg <[email protected]> found 2 more softwares with LAZ support at INTERGEO (06:15:28)
2017-09-27
* Martin Isenburg <[email protected]> found 6 new software with LAZ support at INTERGEO (03:14:28)
2017-09-26
* Martin Isenburg <[email protected]> updates based on Kirk's 2nd email (another fix) (15:22:25)
* Martin Isenburg <[email protected]> updates based on Kirk's 2nd email (15:11:13)
2017-09-22
* Martin Isenburg <[email protected]> updates based on Kirk's email (21:31:12)
2017-09-14
* Martin Isenburg <[email protected]> NOAA now platinum sponsor (11:57:35)
* Howard Butler <[email protected]> make sure to install binary directory laszip_version_api.h (08:49:52)
2017-09-13
* Howard Butler <[email protected]> fix download links (21:38:07)
* Howard Butler <[email protected]> update doc ver (16:51:47)
* Howard Butler <[email protected]> point to 3.1.0 release (15:36:06)
* Howard Butler <[email protected]> define version near top of CMakeLists.txt (15:34:26)
* Howard Butler <[email protected]> package creation stuff (15:13:34)
* Howard Butler <[email protected]> check for unordered_map at configure-time and define HAVE_UNORDERED_MAP for the compilation to use it (14:41:07)
* Howard Butler <[email protected]> cpack stuff for making distribution (14:12:51)
* Howard Butler <[email protected]> Mergenstall branch 'master' of github.com:LASzip/LASzip (13:03:07)
* Howard Butler <[email protected]> Merge pull request #27 from abellgithub/master (13:01:11)
* Andrew Bell <[email protected]> Fix memcpy. (12:58:54)
* Howard Butler <[email protected]> Merge branch 'master' of github.com:LASzip/LASzip (11:43:42)
* Martin Isenburg <[email protected]> moved '#include <vector>' from laszip_api.h to laszip_dll.cpp (11:38:00)
* Howard Butler <[email protected]> -DUNORDERED (11:36:54)
* Howard Butler <[email protected]> cpack (11:36:47)
* Howard Butler <[email protected]> fix memcpy call (11:36:34)
* Howard Butler <[email protected]> put back hash_map (11:36:20)
* Martin Isenburg <[email protected]> fixed bug in memcpy call (?). uniform API interface: always pointers (11:34:43)
* Martin Isenburg <[email protected]> compile switch for hash_map vs unordered_map for MSVC60 (11:16:47)
* Howard Butler <[email protected]> no iostream, no std::copy (08:20:47)
2017-09-12
* Howard Butler <[email protected]> no -DUNORDERED (21:09:23)
* Howard Butler <[email protected]> wrong install path (21:05:16)
* Howard Butler <[email protected]> check before fclose() (21:04:54)
* Howard Butler <[email protected]> Merge remote-tracking branch 'andrew/master' into release-prep (13:08:28)
* Andrew Bell <[email protected]> Keep memory allocation/deallocation in the DLL. (12:15:26)
2017-09-11
* Howard Butler <[email protected]> release 3.1.0 preparation (17:14:36)
* Howard Butler <[email protected]> dos2unix some config (16:06:50)
2017-09-02
* Martin Isenburg <[email protected]> new #define LASZIP_API_VERSION keeps include out of my build (11:21:05)
2017-08-30
* Martin Isenburg <[email protected]> undoing senseless change (once I thought about it) (20:02:04)
* Martin Isenburg <[email protected]> completing stream-based writing (with writing LAS header) (19:51:02)
2017-08-28
* Martin Isenburg <[email protected]> LASzip for LAS 1.4 fix in set_classification() (16:43:33)
* Martin Isenburg <[email protected]> LAS 1.4 fixes for flags: copy_to(), copy_from(), set_xxxx_flag() functions (14:05:04)
* Martin Isenburg <[email protected]> proper 'context' variable instead of development hack (14:02:59)
* Martin Isenburg <[email protected]> Merge pull request #26 from abellgithub/master (10:30:58)
2017-08-24
* Andrew Bell <[email protected]> Remove dead code. (10:38:54)
* Andrew Bell <[email protected]> Fixes to allow detection of version 1.1. Remove dead build code. (10:35:15)
2017-08-23
* Martin Isenburg <[email protected]> minor version increment (also for turning on 'native LAS 1.4 extension' by default) and tiny bug fixes (02:51:44)
* Martin Isenburg <[email protected]> minor version increment (also for turning on 'native LAS 1.4 extension' by default (02:49:52)
2017-08-22
* Martin Isenburg <[email protected]> Merge pull request #24 from abellgithub/master (09:58:43)
2017-08-11
* Andrew Bell <[email protected]> Fix output stream for VLR header fields. (13:44:49)
* Andrew Bell <[email protected]> Merge branch 'zip4' (13:44:20)
2017-08-07
* Andrew Bell <[email protected]> Allow compilation on clang. (09:40:34)
2017-08-03
* Martin Isenburg <[email protected]> new 'laszip_set_point_type_and_size()' as minimal setup for ostream writer (12:18:12)
* Martin Isenburg <[email protected]> simplify C++ interface by removing point format and size from arguments (09:20:46)
* Martin Isenburg <[email protected]> simplify C++ interface by removing point format and size from arguments (09:18:54)
* Martin Isenburg <[email protected]> reuse new 'setup_laszip_items()' in C code writer (08:13:52)
* Martin Isenburg <[email protected]> added to history in header comments (05:05:19)
* Martin Isenburg <[email protected]> reuse new 'write_laszip_vlr_header()' and 'write_laszip_vlr_payload()' in C code (05:04:24)
* Martin Isenburg <[email protected]> reuse new 'laszip_vrl_payload_size()' in C code (04:52:37)
* Martin Isenburg <[email protected]> new 'laszip_create_laszip_vlr' C++ interface (for PDAL) (04:06:10)
* Martin Isenburg <[email protected]> new 'laszip_create_laszip_vlr' C++ interface (for PDAL) (04:03:41)
2017-08-01
* Martin Isenburg <[email protected]> use same 'laszip_read_header' when reading from file_name or istream (07:18:23)
2017-07-29
* Martin Isenburg <[email protected]> minimal C++ iostream interface (11:57:57)
* Martin Isenburg <[email protected]> revision increment for minimal C++ iostream interface (11:52:58)
* Martin Isenburg <[email protected]> minimal C++ iostream interface (11:51:02)
* Martin Isenburg <[email protected]> removal of blanks (from Andrew Bell) (04:23:03)
* Martin Isenburg <[email protected]> new '#ifdef CREATE_HISTOGRAMS' and removal of blanks (from Andrew Bell) (04:22:52)
* Martin Isenburg <[email protected]> removal of unused variable and blanks (from Andrew Bell) (04:22:40)
* Martin Isenburg <[email protected]> removal of unused variable and blanks (from Andrew Bell) (04:22:29)
* Martin Isenburg <[email protected]> ifdef NULL check (from Andrew Bell) (04:09:57)
* Martin Isenburg <[email protected]> support for selective decompression via DLL interface (03:54:57)
* Martin Isenburg <[email protected]> support for selective decompression via DLL interface (03:50:54)
* Martin Isenburg <[email protected]> support for selective decompression via DLL interface (03:45:01)
* Martin Isenburg <[email protected]> revision increment due for selective decompression and seeking bug fix (03:42:06)
* Martin Isenburg <[email protected]> tiny re-spelling of constant for consistency (03:39:05)
* Martin Isenburg <[email protected]> bug fix for seeking in compressed LAS 1.4 files and fixing spelling error in variable name (03:36:34)
* Martin Isenburg <[email protected]> tiny re-spelling of constant for consistency (03:33:43)
* Martin Isenburg <[email protected]> portability fix suggested by Marc Espie <[email protected]> and better verbose output (03:31:04)
* Martin Isenburg <[email protected]> portability fix suggested by Marc Espie <[email protected]> (03:29:09)
2017-06-20
* Martin Isenburg <[email protected]> (U16) casting fix (02:28:40)
2017-04-26
* Martin Isenburg <[email protected]> new function to enable *writing* of new LAS 1.4 point types with new native extension (20:31:44)
* Martin Isenburg <[email protected]> changes for adding native LAS 1.4 extension (20:26:30)
* Martin Isenburg <[email protected]> defines for selective LAS 1.4 decompression (20:15:21)
* Martin Isenburg <[email protected]> common defines for v3 item readers and writers (20:14:37)
* Martin Isenburg <[email protected]> new cases for native LAS 1.4 extension (if requested) (20:12:36)
* Martin Isenburg <[email protected]> new cases for native LAS 1.4 extension (if requested) (20:10:41)
* Martin Isenburg <[email protected]> added missing BigEndian function (20:07:47)
* Martin Isenburg <[email protected]> native LAS1.4 extension item writers (20:06:38)
* Martin Isenburg <[email protected]> native LAS1.4 extension item readers (20:05:45)
* Martin Isenburg <[email protected]> added missing BigEndian function (20:04:15)
* Martin Isenburg <[email protected]> fix in copy_from() and copy_to() for new point types (20:03:06)
* Martin Isenburg <[email protected]> generic function for setting the no_data value (19:58:07)
* Martin Isenburg <[email protected]> new function for 'skipping' bytes in the stream (19:54:21)
2017-04-01
* Martin Isenburg <[email protected]> description of compression for NIR layer (08:28:49)
* Martin Isenburg <[email protected]> Compression of RGB, Wavepacketsm and Extra Bytes layers (08:16:56)
* Martin Isenburg <[email protected]> complete for compression of POINT14 layer(s) (07:46:08)
2017-03-31
* Martin Isenburg <[email protected]> details for compression of classification/flags/intensity layers (17:09:51)
* Martin Isenburg <[email protected]> added actually used tables for map and level (10:25:48)
* Martin Isenburg <[email protected]> updating to released alpha (10:16:13)
2017-02-27
* Martin Isenburg <[email protected]> Mapworks has LAZ support (22:17:27)
2017-01-15
* Martin Isenburg <[email protected]> version 2.5.2 (up from 2.5.1) includes new DLL/API function to change chunk size (with tiny fix) (05:18:16)
2017-01-11
* Martin Isenburg <[email protected]> version 2.5.2 (up from 2.5.1) includes new DLL/API function to change chunk size (10:13:16)
2017-01-08
* Martin Isenburg <[email protected]> no side-effect name changes to prepare for native LAS 1.4 compression (13:08:58)
* Martin Isenburg <[email protected]> can be used as init dummy by native LAS 1.4 compressor (12:49:05)
* Martin Isenburg <[email protected]> new functionality used by native LAS 1.4 compressor (12:37:58)
* Martin Isenburg <[email protected]> no side-effect name changes to prepare for native LAS 1.4 compression (11:53:17)
* Martin Isenburg <[email protected]> extended_scan_angle is I16 not U16 (11:24:17)
* Martin Isenburg <[email protected]> new MACRO used for native LAS 1.4 compression (11:24:07)
* Martin Isenburg <[email protected]> minor version increment 2.5. always writing start_of_waveform_data_packet_record as zero. (08:38:27)
* Martin Isenburg <[email protected]> removing debug error fprintf (08:01:15)
* Martin Isenburg <[email protected]> new convenience macro (07:41:59)
* Martin Isenburg <[email protected]> minor version increment 2.5. fixing NIR and scanner channel copy. (07:41:30)
* Martin Isenburg <[email protected]> minor version increment 2.5. fixing large I64 seek. (07:40:43)
* Martin Isenburg <[email protected]> minor version increment 2.5. small fixs. sync laszip_dll with laszip_api for hobu (07:28:10)
2016-10-29
* Martin Isenburg <[email protected]> INTERGEO: 3 more companies support LAZ (22:51:19)
2016-06-29
* Martin Isenburg <[email protected]> intro update (14:37:51)
* Martin Isenburg <[email protected]> Update specification.rst (14:27:11)
* Martin Isenburg <[email protected]> Update blueprint.rst (14:18:41)
* Martin Isenburg <[email protected]> update to what is happening now (14:17:47)
* Martin Isenburg <[email protected]> added detail about how the GPS time is encoded (14:06:57)
* Martin Isenburg <[email protected]> Update specification.rst (10:11:55)
* Martin Isenburg <[email protected]> some detail on compression of X and Y coordinates (10:06:47)
* Martin Isenburg <[email protected]> Adding detail about return map and return level (09:49:05)
* Martin Isenburg <[email protected]> create more layers for more efficient decompression (09:18:42)
2016-06-21
* Martin Isenburg <[email protected]> exploit correlation between scan angle and GPS time changes (09:51:03)
2016-06-19
* Martin Isenburg <[email protected]> compressing point source ID seperate makes rarely sense (09:32:41)
2016-06-17
* Martin Isenburg <[email protected]> Update specification.rst (10:59:44)
2016-06-16
* Martin Isenburg <[email protected]> starting to refine the compression scheme (09:29:35)
2016-05-22
* Howard Butler <[email protected]> Fix #22 -- get autotools in shape again (17:33:41)
2016-04-18
* Howard Butler <[email protected]> Build and deploy website docs when 'master' branch is built (15:18:20)
2016-03-08
* Howard Butler <[email protected]> Merge pull request #21 from micahcochran/patch-1 (13:27:24)
* Micah Cochran <[email protected]> Switch Travis to Trusty 14.04. (09:41:02)
2016-02-29
* Howard Butler <[email protected]> Merge branch 'master' of github.com:LASzip/LASzip (10:45:19)
2016-02-27
* Martin Isenburg <[email protected]> forgot to deletenow undefined LASZIP_DLL (21:08:49)
* Howard Butler <[email protected]> remove LASzipper/LASUnzipper, catch up to LASzip DLL (13:04:09)
2016-02-25
* Howard Butler <[email protected]> remove pnacl stuff which is not used (09:32:45)
* Martin Isenburg <[email protected]> updated (08:55:35)
* Martin Isenburg <[email protected]> moves from tools to example directory (08:50:33)
* Martin Isenburg <[email protected]> moves from tools to example directory (08:49:03)
* Martin Isenburg <[email protected]> moves from tools to example directory (08:48:06)
* Martin Isenburg <[email protected]> no more laszip\include directory (08:45:49)
* Martin Isenburg <[email protected]> depreciating old libLAS laszipper/lasunzipper binding (08:30:11)
* Martin Isenburg <[email protected]> moving laszippertest to example (08:26:49)
* Martin Isenburg <[email protected]> upgrading to LAS 1.4 compatibility mode (08:23:40)
* Martin Isenburg <[email protected]> depreciating old libLAS laszipper/lasunzipper binding (08:20:15)
* Martin Isenburg <[email protected]> depreciating old libLAS laszipper/lasunzipper binding (08:19:06)
* Martin Isenburg <[email protected]> depreciating old libLAS laszipper/lasunzipper binding (08:12:17)
* Martin Isenburg <[email protected]> depreciating old libLAS laszipper/lasunzipper binding (08:11:19)
* Martin Isenburg <[email protected]> zipper and unzipper now only used by laszippertest (07:59:11)
* Martin Isenburg <[email protected]> zipper and unzipper now only used by laszippertest (07:57:15)
* Martin Isenburg <[email protected]> syncing laszip.org with latest LASzip 2.4.1 (07:53:56)
2016-02-23
* Martin Isenburg <[email protected]> Update specification.rst (04:43:27)
* Martin Isenburg <[email protected]> Update specification.rst (04:41:59)
* Martin Isenburg <[email protected]> Update specification.rst (04:41:03)
* Martin Isenburg <[email protected]> Update specification.rst (04:39:22)
* Martin Isenburg <[email protected]> Update specification.rst (04:38:46)
* Martin Isenburg <[email protected]> Update specification.rst (04:34:26)
* Martin Isenburg <[email protected]> Update specification.rst (04:12:53)
2016-02-22
* Martin Isenburg <[email protected]> coarse outline to get started (06:57:07)
* Martin Isenburg <[email protected]> Update specification.rst (03:31:07)
* Martin Isenburg <[email protected]> specification document for "native LAS 1.4 compression" (03:09:41)
2016-01-22
* Martin Isenburg <[email protected]> SceneMark supports LAZ (07:22:57)
2015-10-13
* Martin Isenburg <[email protected]> Carlson 2016 also supports LAZ (10:01:51)
2015-10-06
* Martin Isenburg <[email protected]> small typos (03:47:36)
2015-10-05
* Martin Isenburg <[email protected]> little typos / name fixes (03:36:19)
2015-10-03
* Martin Isenburg <[email protected]> 7 more software packages with LAZ support discovered at INTERGEO (08:22:03)
2015-09-06
* Martin Isenburg <[email protected]> terrasolid and LiDAR analyst add LAZ support (14:12:01)
2015-08-31
* Martin Isenburg <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (15:26:14)
2015-08-30
* Martin Isenburg <[email protected]> RIEGL becomes Silver Sponsor (15:29:08)
2015-07-18
* Martin Isenburg <[email protected]> Update blueprint.rst (10:59:29)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:51:33)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:48:42)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:44:29)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:44:06)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:36:40)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:35:43)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:34:56)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:32:28)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:30:56)
* Martin Isenburg <[email protected]> Update blueprint.rst (10:17:43)
2015-07-13
* Martin Isenburg <[email protected]> Update blueprint.rst (14:52:28)
* Martin Isenburg <[email protected]> Update blueprint.rst (12:27:58)
* Martin Isenburg <[email protected]> Update blueprint.rst (07:24:25)
* Martin Isenburg <[email protected]> Update blueprint.rst (07:03:39)
* Martin Isenburg <[email protected]> Update blueprint.rst (06:48:01)
* Martin Isenburg <[email protected]> Update blueprint.rst (06:42:14)
* Martin Isenburg <[email protected]> adding detail (06:40:47)
* Martin Isenburg <[email protected]> Update blueprint.rst (06:29:12)
* Martin Isenburg <[email protected]> objectives for "native LAS 1.4 extension" of LASzip (06:25:46)
2015-07-10
* Martin Isenburg <[email protected]> Trimble becomes bronze sponsor and new open LAZ (05:39:27)
2015-06-11
* Martin Isenburg <[email protected]> fixed LiMON link (09:43:13)
2015-06-10
* Martin Isenburg <[email protected]> QINSy, Potree Converter, LiMON, FLAIM support LAZ (18:21:52)
* Martin Isenburg <[email protected]> Optech LMS and Leica Survey Studio support LAZ (15:32:23)
* Martin Isenburg <[email protected]> Quantum Spatial becomes bronze sponsor (15:18:24)
2015-03-28
* Martin Isenburg <[email protected]> new file integrity checks that throw exceptions (21:38:52)
* Martin Isenburg <[email protected]> small fix for reading / writing uncompressed LAS 1.4 (21:31:16)
* Martin Isenburg <[email protected]> two new softwares support LAZ (21:06:30)
2014-12-02
* Martin Isenburg <[email protected]> new LAZ data in Switzerland and New Zealand (01:16:10)
2014-11-14
* Martin Isenburg <[email protected]> USGS bulk LAZ (09:36:44)
2014-11-09
* Howard Butler <[email protected]> Merge pull request #14 from SiggyF/makefile (09:51:39)
2014-11-08
* Fedor Baart <[email protected]> keep Makefile.am in sync with cmake file (15:34:17)
2014-10-16
* Martin Isenburg <[email protected]> typo (22:10:21)
2014-10-11
* Martin Isenburg <[email protected]> added Pointfuse (16:38:03)
* Martin Isenburg <[email protected]> added plas.io (04:17:41)
* Martin Isenburg <[email protected]> CloudPro, PointCAB, DTMaster support and Gold Sponsors (04:12:21)
2014-09-11
* Martin Isenburg <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (06:40:37)
* Martin Isenburg <[email protected]> update in (internal) struct alignment for read / write of uncompressed LAS 1.4 (06:39:49)
2014-09-08
* Howard Butler <[email protected]> Merge branch 'master' of github.com:LASzip/LASzip (09:17:18)
* Howard Butler <[email protected]> default to osgeo4w64 for OSGEO4W_DIR (09:17:15)
* Howard Butler <[email protected]> Merge pull request #12 from chambbj/cmake-update-entropy-encoder (08:43:55)
* Bradley J Chambers <[email protected]> update CMakeLists, fixes #11 (07:06:21)
2014-09-07
* Martin Isenburg <[email protected]> removal of (unused) EntropyEncoder and EntropyDecoder purely virtual classes (10:37:28)
* Martin Isenburg <[email protected]> removal of (unused) EntropyEncoder and EntropyDecoder purely virtual classes (10:36:24)
* Martin Isenburg <[email protected]> purely cosmetic change in comments (09:33:30)
* Martin Isenburg <[email protected]> alignment of auxiliary struct to 8 bytes (09:31:43)
* Martin Isenburg <[email protected]> cosmetic changes and consistent pack/unpack naming (09:15:20)
* Martin Isenburg <[email protected]> Merge pull request #7 from verma/master (07:23:28)
2014-09-06
* Martin Isenburg <[email protected]> delay read of chunk table until first read() or seek() is called (12:29:14)
2014-08-21
* Howard Butler <[email protected]> Merge pull request #10 from tigerfoot/master (09:22:05)
* Bruno Friedmann <[email protected]> Update COPYING (09:08:52)
2014-07-31
* Martin Isenburg <[email protected]> added Fugroviewer and Scop++ to list of softwares (03:54:14)
2014-07-27
* Howard Butler <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (23:10:29)
* Howard Butler <[email protected]> point at osgeo4w64 instead of osgeo4w (23:10:26)
2014-07-20
* Martin Isenburg <[email protected]> critical read bug for truncated LAZ files compressed with 'adaptive chunking' (now also aborts for streaming input) (07:47:28)
* Martin Isenburg <[email protected]> critical read bug for truncated LAZ files compressed with 'adaptive chunking' (07:28:50)
* Martin Isenburg <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (06:06:43)
2014-07-05
* Howard Butler <[email protected]> Merge pull request #9 from mloskot/fix_copy_files_osgeo4w (20:12:12)
2014-07-04
* Mateusz Łoskot <[email protected]> Tweak and correct the original fix (17:37:34)
* Mateusz Łoskot <[email protected]> Correct headers location in OSGeo4W deploying (17:11:31)
2014-06-15
* Howard Butler <[email protected]> cast to U32 to silence warning (15:51:57)
2014-06-07
* Howard Butler <[email protected]> clean up some warnings that msvc2013 found (22:57:21)
2014-06-06
* Howard Butler <[email protected]> fix issue identified in libLAS/libLAS#9 where LASzip headers were not installing in correct location for autoconf builds (16:44:30)
2014-05-29
* Martin Isenburg <[email protected]> added BLAZE as LAZ supporter (16:15:36)
2014-05-23
* Martin Isenburg <[email protected]> Trimble Realworks 8.1 adds LAZ support (import/export) (10:07:55)
2014-05-22
* Martin Isenburg <[email protected]> added ERDAS, La Rioja, and SonomaVeg (04:19:49)
2014-05-13
* Howard Butler <[email protected]> #include laszipexport.hpp again (17:25:24)
* Howard Butler <[email protected]> add ../dll include directory (17:24:58)
* Howard Butler <[email protected]> Add MSVC 2012 and 2013 types (17:24:39)
* Howard Butler <[email protected]> add missing pnacl file (11:09:26)
2014-04-29
* Howard Butler <[email protected]> Merge pull request #8 from gadomski/no-using-std-globally (09:16:46)
2014-04-28
* Pete Gadomski <[email protected]> Remove using namespace std from global namespace (12:14:27)
2014-04-12
* Uday Verma <[email protected]> Move wavepacket struct to a common header, rename make/lay functions to unpack/pack (08:55:51)
2014-04-10
* Uday Verma <[email protected]> Refactor wavepacket struct and change wavepacket pointer cast to bytes packing (17:05:07)
2014-04-07
* Howard Butler <[email protected]> don't use laszip_dll unless we're windows (16:37:18)
2014-03-27
* Martin Isenburg <[email protected]> preparing LAZ for integration of LAX (07:54:54)
2014-03-24
* Howard Butler <[email protected]> clean up NaCl module (11:12:21)
* Howard Butler <[email protected]> tweak laszip_dll stuff so it builds cleanly (11:09:07)
* Martin Isenburg <[email protected]> better DLL after meeting hobu in Vienna (10:51:45)
* Howard Butler <[email protected]> add bytestreamin_array.hpp from PulseWaves (10:34:04)
* Martin Isenburg <[email protected]> better DLL after meeting hobu in Vienna (05:38:00)
* Howard Butler <[email protected]> Merge pull request #4 from gcasey/master (02:27:22)
2014-03-22
* Martin Isenburg <[email protected]> added netherlands and espa engine (03:23:14)
* Martin Isenburg <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (01:09:44)
* Martin Isenburg <[email protected]> Merge pull request #5 from scw/patch-1 (01:09:18)
* Shaun Walbridge <[email protected]> swap license to the correct one. (01:00:48)
2014-03-21
* Martin Isenburg <[email protected]> Merge branch 'master' of https://github.com/LASzip/LASzip (23:49:36)
2014-03-19
* Howard Butler <[email protected]> try a different theme (13:48:43)
2014-03-14
* Howard Butler <[email protected]> rename module source file (09:44:59)
* Howard Butler <[email protected]> add some scaffolding to be able to build LASzip in emscripten (not working) (09:35:34)
* Howard Butler <[email protected]> add fclose() (09:35:18)
2014-03-02
* Martin Isenburg <[email protected]> added laszip-cli.exe (06:53:11)
2014-03-01
* Howard Butler <[email protected]> fix up skip and start parameters (16:03:45)
* Martin Isenburg <[email protected]> website updates (06:35:32)
2014-02-28
* Howard Butler <[email protected]> rename to plasio_laszip, don't iterate off the end, return count back to reader (16:40:09)
* Howard Butler <[email protected]> implement start, skip, and count for read() method of nacl module (13:32:07)
* Howard Butler <[email protected]> count-based reader (09:18:47)
2014-02-27
* Howard Butler <[email protected]> use minsize build, return ArrayBuffer (22:30:00)
* Howard Butler <[email protected]> fix up travis script now that we don't do Debug/Release binary directory (17:54:05)
* Howard Butler <[email protected]> open our own files instead of web ones (17:39:33)
* Howard Butler <[email protected]> it appears we're reading data (16:35:00)
* Howard Butler <[email protected]> getheader working (14:45:13)
* Casey Goodlett <[email protected]> Add option to disable buildosgeo4w on windows (10:00:00)
* Howard Butler <[email protected]> c++ example works now (09:40:51)
2014-02-26
* Howard Butler <[email protected]> cleanups. basic read of a point works (13:59:02)
* Howard Butler <[email protected]> able to read a point from the zip file (11:35:52)
2014-02-25
* Howard Butler <[email protected]> successfully read a laszip file -- doesn't do anything useful though (13:10:14)
2014-02-24
* Howard Butler <[email protected]> fail at opening a laszip file (16:34:01)
* Howard Butler <[email protected]> initial hello world fopen pnacl example (14:24:40)
2014-01-31
* Martin Isenburg <[email protected]> update AusCover Airborne LiDAR (08:27:02)
2014-01-25
* Martin Isenburg <[email protected]> LAZ in Alaska (20:54:12)
2014-01-13
* Martin Isenburg <[email protected]> removing restriction (R) (04:49:55)
2013-12-29
* Martin Isenburg <[email protected]> added K2Vi by AAM Group (19:06:36)
* Martin Isenburg <[email protected]> added ENVI LiDAR and GRASS GIS (11:04:01)
2013-12-28
* Martin Isenburg <[email protected]> added SURE (11:55:18)
* Martin Isenburg <[email protected]> added ZEB1 (07:22:35)
* Martin Isenburg <[email protected]> added OCAD (06:39:13)
* Martin Isenburg <[email protected]> added FUSION and PDF3D (06:13:52)
2013-11-02
* Martin Isenburg <[email protected]> new softwares support LAZ (22:30:39)
2013-09-03
* Martin Isenburg <[email protected]> fixed a tiny bug (02:30:45)
2013-08-07
* Howard Butler <[email protected]> fix links to new release (07:21:21)
2013-08-05
* Howard Butler <[email protected]> ignore test.tmp and laszipper.log (13:05:19)
* Howard Butler <[email protected]> add headers to SOURCES so they're included in tarball (13:04:08)
* Howard Butler <[email protected]> increment version to 2.2.0 in preparation for release (09:21:13)
* Howard Butler <[email protected]> add Travis configuration (09:08:46)
* Howard Butler <[email protected]> update AUTHORS (08:56:36)
2013-08-04
* Martin Isenburg <[email protected]> bug fix and update email and company name (14:44:44)
* Martin Isenburg <[email protected]> update email and company name (14:43:03)
* Martin Isenburg <[email protected]> bug fix and update email and company name (14:42:46)
* Martin Isenburg <[email protected]> incremented version to 2.1 rev 1 (14:40:56)
* Martin Isenburg <[email protected]> update email and company name (14:35:32)
* Martin Isenburg <[email protected]> removed ancient laszip.cpp and lasdiff.cpp junk (14:33:32)
* Martin Isenburg <[email protected]> removed ancient laszip.cpp and lasdiff.cpp junk (14:32:23)
* Martin Isenburg <[email protected]> removed ancient laszip.cpp and lasdiff.cpp junk (14:29:16)
* Martin Isenburg <[email protected]> more software with LAZ support (10:01:57)
2013-05-08
* Martin Isenburg <[email protected]> added TERN AusCover LAZ data (17:02:03)
2013-02-16
* Martin Isenburg <[email protected]> Merge https://github.com/LASzip/LASzip (06:23:36)
* Martin Isenburg <[email protected]> Danish, GRAFCAN, more DNR MN (06:21:33)
2013-02-07
* Howard Butler <[email protected]> Merge pull request #1 from torsti/mingw (12:03:53)
2013-02-06
* Martin Isenburg <[email protected]> more LAS data (01:20:17)
2013-02-03
* Martin Isenburg <[email protected]> another folder of LAZ (01:34:31)
2013-01-18
* Martin Isenburg <[email protected]> cloud compare supports LAZ (10:17:37)
2012-12-22
* Martin Isenburg <[email protected]> more MN LAZ (13:38:10)
2012-12-07
* Martin Isenburg <[email protected]> more LAZ from DNR Minnesota and NOAA (09:23:42)
* Martin Isenburg <[email protected]> more LAZ from PSLC (06:08:52)
2012-12-06
* Martin Isenburg <[email protected]> all LAS of puget sound LiDAR consortium converted to LAZ (11:54:30)
2012-11-15
* Martin Isenburg <[email protected]> more LAZ in MN (07:26:12)
2012-11-12
* Torsti Schulz <[email protected]> Support compilation with MinGW toolchain (07:17:23)
2012-10-05
* Martin Isenburg <[email protected]> more MN LAZ (23:35:00)
2012-10-03
* Martin Isenburg <[email protected]> added more minnesota LAZ links (17:13:56)
2012-08-20
* Martin Isenburg <[email protected]> adding pointools news (13:32:27)
* Martin Isenburg <[email protected]> test of hobu's web updates (05:35:32)
2012-08-13
* Martin Isenburg <[email protected]> more LAS (18:44:22)
2012-08-12
* Martin Isenburg <[email protected]> new data (14:06:29)
2012-08-04
* Martin Isenburg <[email protected]> more LAS/LAZ files (09:27:34)
* Howard Butler <[email protected]> tweak indenting (08:32:57)
2012-07-29
* Martin Isenburg <[email protected]> updated links (17:37:54)
2012-07-09
* Martin Isenburg <[email protected]> more LAZ sources (06:25:13)
2012-06-25
* Martin Isenburg <[email protected]> link more uncompressed LAS archives (17:06:19)
2012-06-24
* Martin Isenburg <[email protected]> link some uncompressed LAS archives (18:03:00)
* Martin Isenburg <[email protected]> link some uncompressed LAS archives (17:28:57)
2012-06-17
* Martin Isenburg <[email protected]> more DNR MN LAZ (06:03:24)
2012-05-31
* Martin Isenburg <[email protected]> fixed bug for reading chunked LAZ with chunktable from stdin pipe (07:49:25)
2012-05-10
* Martin Isenburg <[email protected]> changed version to 2.1.0 (14:23:30)
2012-05-09
* Martin Isenburg <[email protected]> national land survey of finland (06:17:40)
2012-04-28
* Martin Isenburg <[email protected]> win (14:37:32)
2012-03-22
* Martin Isenburg <[email protected]> more software supports LAZ (19:20:49)
2012-01-21
* Martin Isenburg <[email protected]> added lidar-online (10:26:19)
2012-01-04
* Howard Butler <[email protected]> point to new release (11:55:44)
* Howard Butler <[email protected]> increment version to 2.1.0 in preparation for release (11:45:25)
* Howard Butler <[email protected]> re-export LASitem because you are expected to use it to find out about the compression (11:31:04)
2012-01-03
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:37:29)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:32:08)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:30:15)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:29:11)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:28:59)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:26:44)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:26:17)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:26:12)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:25:12)
* Martin Isenburg <[email protected]> fix seeking without chunk table + LAS 1.4 stubs (13:23:46)
* Martin Isenburg <[email protected]> fix seeking without chunk table + LAS 1.4 stubs (13:23:40)
* Martin Isenburg <[email protected]> fix seeking without chunk table + LAS 1.4 stubs (13:17:18)
* Martin Isenburg <[email protected]> fix seeking without chunk table + LAS 1.4 stubs (13:17:10)
* Martin Isenburg <[email protected]> fix seeking without chunk table + LAS 1.4 stubs (13:15:20)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:11:32)
* Martin Isenburg <[email protected]> fix seeking without chunk table (13:11:26)
2011-12-07
* Martin Isenburg <[email protected]> typo (05:57:59)
2011-12-06
* Martin Isenburg <[email protected]> added paper, video, LAZ links (16:50:15)
2011-11-09
* Howard Butler <[email protected]> Revert "win32 dll fix" (09:59:27)
2011-10-27
* Michael P. Gerlek <[email protected]> win32 dll fix (12:52:17)
2011-10-07
* Howard Butler <[email protected]> update typos (15:36:53)
* Howard Butler <[email protected]> point to new release (15:23:15)
* Howard Butler <[email protected]> remove hg tags file (14:52:11)
* Howard Butler <[email protected]> ignore git stuff when packaging (14:52:04)
* Howard Butler <[email protected]> move .hgignore to .gitignore (14:47:10)
* Howard Butler <[email protected]> increment versions in preparation for release (14:42:12)
* Howard Butler <[email protected]> clean up _strdup vs strdup warnings on MSVC>1500 (14:36:24)
* Howard Butler <[email protected]> cast to streamoff instead of streampos (14:07:03)
* Martin Isenburg <[email protected]> revision bump to 2.0.2. the changes: * large file support (>2GB LAZ) * ability to partly read LAZ files where the compressor was interrupted * ability to partly read LAZ files where the file transfer was interrupted (08:02:25)
2011-08-23
* hobu <[email protected]> point to new repository (09:33:56)
2011-08-19
* Howard Butler <[email protected]> merge (15:18:40)
* Howard Butler <[email protected]> first (15:17:24)
2011-06-30
* Howard Butler <[email protected]> point to new release (11:38:33)
* Howard Butler <[email protected]> Added tag 2.0.1 for changeset 76d7e6da5196 (11:21:06)
* Howard Butler <[email protected]> increment versions in preparation for 2.0.1 release (11:21:01)
2011-06-29
* Michael P. Gerlek <[email protected]> missing DLL export (20:08:39)
2011-06-28
* isenburg <none@none> fixed for chunked compression of 0 points (10:12:29)
2011-06-27
* Howard Butler <[email protected]> malloc demands free, not delete [] (14:39:15)
2011-06-24
* Howard Butler <[email protected]> Added tag 2.0.0 for changeset d69574ffd060 (08:34:13)
* Howard Butler <[email protected]> update version number for website and date of release (08:33:53)
2011-06-23
* isenburg <none@none> unused variable clean-up (18:29:05)
* isenburg <none@none> updates test (17:48:49)
* isenburg <none@none> switching on LASzip v2.0 with chunking (17:48:07)
* isenburg <none@none> merge (17:46:15)
* isenburg <none@none> formulation (17:45:21)
* isenburg <none@none> switching on LASzip v2.0 with chunking (17:43:36)
* Howard Butler <[email protected]> Added tag 2.0.0 for changeset 037abfa227a0 (13:24:25)
* Howard Butler <[email protected]> update website to point at LASzip 2.0.0 release (13:24:08)
* Howard Butler <[email protected]> increment version to 2.0.0 (08:49:06)
* Howard Butler <[email protected]> update notes about which version numbers to increment (08:48:00)
2011-06-22
* isenburg <none@none> tiny bug. glad i ran another extensive test series (11:13:09)
* isenburg <none@none> fixed link (07:42:11)
2011-06-21
* isenburg <none@none> more LAZ online (20:05:21)
2011-06-13
* isenburg <none@none> proper EOF handling with throw EOF (15:34:28)
* isenburg <none@none> adding broken test data (12:50:05)
* isenburg <none@none> updated error info via const char* get_error() (12:19:15)
* isenburg <none@none> updated error info via const char* get_error() (12:18:18)
* isenburg <none@none> updated usage example again (12:17:37)
* isenburg <none@none> updated usage example (07:56:51)
* isenburg <none@none> improved GPS time compression (07:55:54)
* isenburg <none@none> updated error information via char* error_string (07:54:33)
* isenburg <none@none> updated error information via char* error_string (07:52:36)
2011-05-16
* isenburg <none@none> compressed chunking information and better GPS time compression (10:01:23)
* isenburg <none@none> new test for variable chunking (10:00:05)
2011-05-11
* isenburg <none@none> merge (18:38:59)
* isenburg <none@none> quitting random seek loop after 100 seeks (18:34:07)
* Howard Butler <[email protected]> remove extra qualification (13:48:20)
2011-05-10
* isenburg <none@none> added a test for seeking (09:35:16)
* isenburg <none@none> fixed a memory little bug (09:34:02)
* isenburg <none@none> moved all version control into LASzip (07:01:55)
* isenburg <none@none> moved all version control into LASzip (07:00:51)
* isenburg <none@none> moved all version control into LASzip (07:00:26)
* isenburg <none@none> further clean-up and commenting (06:59:03)
2011-05-09
* isenburg <none@none> fixed up laszippertest to be a better example (18:28:19)
* isenburg <none@none> allows variable-sized chunking with explicit zipper.chunk() call when chunk_size == 0 (15:04:25)
* isenburg <none@none> allows variable-sized chunking with explicit zipper.chunk() call when chunk_size == 0 (15:03:25)
2011-05-06
* isenburg <none@none> added functions to query point type and size (07:53:12)
* isenburg <none@none> added functions to query point type and size (07:52:24)
2011-05-05
* isenburg <none@none> example with packing/unpacking of VLR (19:05:48)
* isenburg <none@none> added pack and unpack of VLRs (19:05:14)
* isenburg <none@none> added pack and unpack of VLRs (19:04:55)
2011-04-25
* isenburg <none@none> the updated laszippertest. does not yet test seeking. (18:31:25)
* isenburg <none@none> the file i usually forget to commit (18:28:13)
* isenburg <none@none> point reader and writer with chunking (18:27:48)
* isenburg <none@none> implementation of new laszip interface (18:26:15)
* isenburg <none@none> updated i/o model to support seeking (18:21:18)
* isenburg <none@none> fixed wrong number of end bytes bug (18:20:14)
* isenburg <none@none> new interface for chunking (18:18:10)
* isenburg <none@none> new interface for chunking (18:16:45)
2011-04-07
* isenburg <none@none> more LAZ (05:58:40)
2011-04-05
* Howard Butler <[email protected]> Added tag 1.2.0 for changeset 8144ee77b770 (11:33:47)
* Howard Butler <[email protected]> typo on link (10:40:25)
* Howard Butler <[email protected]> update to point at location of new release (10:31:57)
* Howard Butler <[email protected]> missing header file for autoconf build (10:26:52)
* Howard Butler <[email protected]> update CPACK_SOURCE_IGNORE_FILES (10:24:20)
* Howard Butler <[email protected]> typo for CPACK_PACKAGE_VERSION_PATCH (09:50:55)
* Howard Butler <[email protected]> increment version information to 1.2.0 in preparation for next release (08:38:35)
2011-04-03
* isenburg <none@none> merge (07:54:21)
* isenburg <none@none> fix (07:53:03)
2011-03-24
* Howard Butler <[email protected]> add v2 to cmake (18:41:07)
* isenburg <none@none> more data (11:16:27)
2011-03-23
* isenburg <none@none> i always forget one (17:29:02)
* isenburg <none@none> more LAZ and formatting (04:40:29)
2011-03-22
* isenburg <none@none> more LAZ and formatting (16:20:22)
* isenburg <none@none> moving detail from and data to main page (14:12:09)
* isenburg <none@none> adding laszip version 2.0 (13:22:22)
* isenburg <none@none> adding laszip version 2.0 (13:21:12)
* isenburg <none@none> adding laszip version 2.0 (13:19:47)
* isenburg <none@none> adding laszip version 2.0 (13:07:35)
* isenburg <none@none> adding laszip version 2.0 (13:06:35)
* isenburg <none@none> adding laszip version 2.0 (12:59:57)
* isenburg <none@none> another webpage (12:24:29)
* isenburg <none@none> another webpage (09:19:21)
2011-03-21
* isenburg <none@none> adding laszip version 2.0 (06:20:11)
2011-03-18
* Howard Butler <[email protected]> add page pointing to LASzip data available for download (08:09:25)
2011-02-27
* isenburg <none@none> some lossless blurb (09:24:56)
2011-02-20
* isenburg <none@none> eliminated another lurking error (11:18:17)
2011-02-08
* Michael P. Gerlek <[email protected]> use %u, not %d (17:24:47)
2011-02-04
* Howard Butler <[email protected]> tweak language and layout a little bit (22:19:23)
* isenburg <none@none> adding content to webpage (21:19:52)
2011-02-01
* Howard Butler <[email protected]> update links to new release (11:18:40)
* Howard Butler <[email protected]> Added tag 1.0.1 for changeset a216ab3ddb11 (11:14:44)
* Howard Butler <[email protected]> increment versions in preparation for release (08:39:26)
* Howard Butler <[email protected]> add compile-time endianness check from libLAS and issue an #error when it's determined we're big-endian (08:26:54)
2011-01-31
* Howard Butler <[email protected]> add Sphinx makefile (16:20:49)
* Howard Butler <[email protected]> add Sphinx dox for website (16:04:13)
* isenburg <none@none> small efficiency fix (15:35:44)
* isenburg <none@none> mean bug fix due to floating-point 'Inf' compiler differences (15:22:30)
* isenburg <none@none> forgot to uncomment a line. got rid of tabs. (13:28:38)
* isenburg <none@none> compress/decompress scan angle as U8 avoids danger (13:15:44)
* Michael P. Gerlek <[email protected]> added asserts (12:17:43)
* Michael P. Gerlek <[email protected]> VS2010 lint (11:47:13)
* Michael P. Gerlek <[email protected]> fix vs2010 warnings; fix crlfs (11:46:22)
* Michael P. Gerlek <[email protected]> added -x, to set random seed (and fix crlf) (11:42:25)
* isenburg <none@none> init functions return BOOL instead of I32 (10:50:56)
2011-01-30
* isenburg <none@none> fixed messed up licensing comments (07:40:05)
* isenburg <none@none> fixed for windows (07:14:53)
2011-01-29
* Howard Butler <[email protected]> import, not export the dll (20:18:26)
* Howard Butler <[email protected]> proper #ifdefs for range encoder test (20:10:43)
2011-01-28
* isenburg <none@none> consistent (and nicer) looking licensing headers (08:53:17)
* isenburg <none@none> consistent (and nicer) looking licensing headers (08:52:29)
2011-01-21
* Howard Butler <[email protected]> static build option (13:29:25)
* Howard Butler <[email protected]> rename copied symbol from liblas (12:56:49)
* Howard Butler <[email protected]> turn off LASZIP_DLL entirely if we haven't asked for it (12:14:33)
2011-01-17
* Howard Butler <[email protected]> merge (12:08:54)
* Howard Butler <[email protected]> increment version in preparation for release (12:05:57)
* Howard Butler <[email protected]> move range encoder/decoder into unused directory and add to ignores list for package building (12:04:51)
* Howard Butler <[email protected]> remove liblas-specific stuff (12:04:16)
* Howard Butler <[email protected]> add release howto (11:58:39)
* Michael P. Gerlek <[email protected]> blind fix for Hobu (10:00:09)
2011-01-16
* Michael P. Gerlek <[email protected]> made Settings be a singleton, added proper logging (18:38:27)
2011-01-14
* Michael P. Gerlek <[email protected]> added help mssg (17:06:41)
* Michael P. Gerlek <[email protected]> added Settings object to hold cmd line params; added cmd line interface; added randomness (17:03:29)
* Howard Butler <[email protected]> update my little config (12:47:28)
2011-01-13
* Michael P. Gerlek <[email protected]> consolidate still more, so can add infinite loop (13:20:44)
* Michael P. Gerlek <[email protected]> refactor to remove triplicated code paths (12:51:08)
2011-01-12
* Michael P. Gerlek <[email protected]> pull-merge (15:55:19)
* isenburg <none@none> fixed mean bug for k == 32 (15:28:11)
* Howard Butler <[email protected]> destroy symbolmodel for m_gpstime_0diff (14:58:35)
* Howard Butler <[email protected]> use array delete for writers_raw and writers_compressed (14:49:33)
* Howard Butler <[email protected]> undo r138 (14:45:51)
* Howard Butler <[email protected]> don't leak writers_raw and writers_compressed pointers when cleaning up (14:38:41)
* Michael P. Gerlek <[email protected]> put rangecoder tests under #ifdef (11:23:39)
* Howard Butler <[email protected]> update to reflect export.hpp name change (10:37:22)
* Howard Butler <[email protected]> actually rename export.hpp to laszipexport.hpp (09:01:15)
* isenburg <none@none> export.hpp name change (08:22:34)
* isenburg <none@none> removing rangecoder (07:34:39)
2011-01-11
* Michael P. Gerlek <[email protected]> "bool" is valid post-VC6 (14:45:20)
* Michael P. Gerlek <[email protected]> pull-merge (10:42:14)
2011-01-10
* Michael P. Gerlek <[email protected]> vs2010 detritus (18:44:17)
* Howard Butler <[email protected]> add newline (12:56:58)
* Howard Butler <[email protected]> add newline (12:56:18)
2011-01-07
* Howard Butler <[email protected]> tweak version (14:26:42)
* Howard Butler <[email protected]> packaging (13:58:53)
* Howard Butler <[email protected]> update ChangeLog (13:56:34)
* isenburg <none@none> more efficient big endian handling (11:45:52)
* isenburg <none@none> more efficient big endian handling (11:42:34)
* Howard Butler <[email protected]> turn off osgeo4w building by default (09:24:25)
2011-01-06
* Michael P. Gerlek <[email protected]> do need to delete martin's stream (but not ours) (15:23:42)
* isenburg <none@none> for testing if extra freads/fwrites affect performance (12:01:53)
* Howard Butler <[email protected]> export LASunzipper too (11:40:14)
2011-01-05
* Howard Butler <[email protected]> add install_name for OSX (21:35:08)
* Howard Butler <[email protected]> put LASZIP_DLL back. Martin, please let me know your error message(s) instead of removing this as I need it for the OSGeo4W windows deployment (21:08:32)
* isenburg <none@none> forgot to copy & commit (11:56:48)
2011-01-04
* isenburg <none@none> improved endianness again, renamed compression to algorithm, improved wavepacket13 compressor (17:57:54)
* isenburg <none@none> mpg: the LAS_ZIP_DLL does not work with my code. can you ifdef it? (17:52:11)
* Howard Butler <[email protected]> add a few more ignores (12:02:44)
* Howard Butler <[email protected]> simplify to a single package install for osgeo4w (09:38:56)
2011-01-03
* Howard Butler <[email protected]> fix osgeo4w dependency and add OSGEO4W_UPSTREAM_RELEASE usage (14:47:10)
* Howard Butler <[email protected]> osgeo4w packaging (12:31:23)
* Howard Butler <[email protected]> add osgeo4w packaging script (12:20:33)
* Howard Butler <[email protected]> add laszip-config and laszip.pc packageconfig (12:06:27)
* Howard Butler <[email protected]> bring in line with cmake setup (12:06:15)
* Howard Butler <[email protected]> bring in line with cmake setup (12:06:06)
* Howard Butler <[email protected]> ignore .lax test files and change location of laszip-config and laszip.pc package config files (12:05:51)
* Howard Butler <[email protected]> add packaging and soname for dll (11:49:44)
* Howard Butler <[email protected]> add a laszip-config target (11:49:29)
* Howard Butler <[email protected]> add a few more ignores (11:48:54)
* Howard Butler <[email protected]> these files are not used anymore according to Martin (11:30:22)
2010-12-30
* Howard Butler <[email protected]> add my base config (11:32:59)
* Howard Butler <[email protected]> export the laszip dll items (11:32:45)
* Howard Butler <[email protected]> fix install target to LASZIP_LIB_DIR instead of _BIN, build shared library by default (10:53:47)
* Howard Butler <[email protected]> start adding LASZIP_DLL exports definition in preparation for shared library build/install/usage (09:10:52)
* Howard Butler <[email protected]> add logic or setting CMAKE_BUILD_TYPE to Debug by default if not set and not in the cache (09:03:28)
* Howard Butler <[email protected]> add some missing header files (09:02:59)
2010-12-27
* Michael P. Gerlek <[email protected]> explicit default param no longer needed (13:44:10)
* Michael P. Gerlek <[email protected]> use an enum for the compression type, for type safety (13:35:32)
* Michael P. Gerlek <[email protected]> fix err checks on open() (13:17:59)
* Michael P. Gerlek <[email protected]> remove fprintf calls (13:15:58)
* Michael P. Gerlek <[email protected]> remove calls to fprintf, exit (13:14:06)
2010-12-23
* isenburg <none@none> one last optimization to compress 1.5 percent better (19:24:25)
* isenburg <none@none> fix of pointreader and small optimization of POINT10 compressor (12:11:19)
* isenburg <none@none> added test for new WAVEPACKET13 compressor (08:11:29)
* isenburg <none@none> added test for new WAVEPACKET13 compressor (08:02:14)
* isenburg <none@none> updated RGB encoding to be endian neutral (07:45:46)
2010-12-22
* Michael P. Gerlek <[email protected]> sync up w/ Martin's versioning (16:16:19)
* Michael P. Gerlek <[email protected]> memleak (16:12:44)
* Michael P. Gerlek <[email protected]> move header functions into .cpp file (15:09:56)
* Michael P. Gerlek <[email protected]> sync w/ Martin's changes (13:25:03)
* Michael P. Gerlek <[email protected]> pull-merge (13:18:36)
* Michael P. Gerlek <[email protected]> pass streams by ref, not as pointers; return status code on open, not bool; declare items parameter as an array (12:14:01)
2010-12-21
* isenburg <none@none> renaming to GPSTIME11, RGB12, and WAVEPACKET13 (14:25:15)
* isenburg <none@none> added LASzip struct to be used as VLR data (14:20:28)