forked from LASzip/LASzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1057 lines (886 loc) · 36.8 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
2011-01-07 isenburg <isenburg>
* src/mydefs.hpp:
more efficient big endian handling
[7ff2569cc64a] [tip]
* src/lasreaditemraw.hpp, src/lasreadpoint.cpp,
src/laswriteitemraw.hpp, src/laswritepoint.cpp:
more efficient big endian handling
[7ae269f43dde]
2011-01-07 Howard Butler <[email protected]>
* CMakeLists.txt:
turn off osgeo4w building by default
[c544849de62f]
2011-01-06 Michael P. Gerlek <[email protected]>
* src/lasunzipper.cpp, src/laszipper.cpp:
do need to delete martin's stream (but not ours)
[71658514f280]
2011-01-06 isenburg <isenburg>
* src/lasreaditemraw.hpp, src/laswriteitemraw.hpp:
for testing if extra freads/fwrites affect performance
[a8ad11ceb54b]
2011-01-06 Howard Butler <[email protected]>
* include/laszip/lasunzipper.hpp:
export LASunzipper too
[89e9ea2f8f7c]
2011-01-05 Howard Butler <[email protected]>
* src/CMakeLists.txt:
add install_name for OSX
[880013a5e96a]
* include/laszip/export.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp:
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
[057be33cd6db]
2011-01-05 isenburg <isenburg>
* tools/laszippertest.cpp:
forgot to copy & commit
[daac63e565cf]
2011-01-04 isenburg <isenburg>
* src/bytestreamin.hpp, src/bytestreamin_file.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout.hpp,
src/bytestreamout_file.hpp, src/bytestreamout_ostream.hpp,
src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/lasreaditemraw.hpp, src/lasreadpoint.cpp, src/lasreadpoint.hpp,
src/lasunzipper.cpp, src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswriteitemraw.hpp,
src/laswritepoint.cpp, src/laswritepoint.hpp, src/laszip.cpp,
src/laszipper.cpp, src/rangemodel.cpp:
improved endianness again, renamed compression to algorithm,
improved wavepacket13 compressor
[dcd14845f9ed]
* include/laszip/lasunzipper.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp:
mpg: the LAS_ZIP_DLL does not work with my code. can you ifdef it?
[a8aa0185aa63]
2011-01-04 Howard Butler <[email protected]>
* .hgignore:
add a few more ignores
[473e998d2955]
* cmake/modules/BuildOSGeo4W.cmake:
simplify to a single package install for osgeo4w
[14af050db188]
2011-01-03 Howard Butler <[email protected]>
* CMakeLists.txt, cmake/modules/BuildOSGeo4W.cmake:
fix osgeo4w dependency and add OSGEO4W_UPSTREAM_RELEASE usage
[6cfec438cea3]
* CMakeLists.txt, cmake/modules/BuildOSGeo4W.cmake:
osgeo4w packaging
[bb381252df0d]
* cmake/modules/BuildOSGeo4W.cmake:
add osgeo4w packaging script
[5702cc183fe5]
* tools/CMakeLists.txt, tools/laszip-config.in, tools/laszip.pc.in:
add laszip-config and laszip.pc packageconfig
[5ea850338ed1]
* include/laszip/Makefile.am:
bring in line with cmake setup
[03aa58b60bf5]
* configure.ac:
bring in line with cmake setup
[0a245357c2cd]
* .hgignore:
ignore .lax test files and change location of laszip-config and
laszip.pc package config files
[3075e12e3a47]
* CMakeLists.txt, src/CMakeLists.txt:
add packaging and soname for dll
[43aa7323c711]
* laszip-config.in, tools/CMakeLists.txt, tools/laszip-config.in:
add a laszip-config target
[d48a54cc320b]
* .hgignore:
add a few more ignores
[f3729328ee77]
* src/CMakeLists.txt, src/lasreaditemrawendianswapped.hpp,
src/laswriteitemrawendianswapped.hpp:
these files are not used anymore according to Martin
[25aa62883097]
2010-12-30 Howard Butler <[email protected]>
* hobu-config.bat:
add my base config
[8fe8b5444dcf]
* src/CMakeLists.txt, tools/CMakeLists.txt:
export the laszip dll items
[799d195fe864]
* CMakeLists.txt, src/CMakeLists.txt:
fix install target to LASZIP_LIB_DIR instead of _BIN, build shared
library by default
[f30dd5b85cdc]
* include/laszip/export.hpp, include/laszip/lasunzipper.hpp,
include/laszip/laszip.hpp, include/laszip/laszipper.hpp,
src/CMakeLists.txt:
start adding LASZIP_DLL exports definition in preparation for shared
library build/install/usage
[724ec4f2a7de]
* CMakeLists.txt:
add logic or setting CMAKE_BUILD_TYPE to Debug by default if not set
and not in the cache
[35628e849688]
* src/CMakeLists.txt:
add some missing header files
[adc903683a4b]
2010-12-27 Michael P. Gerlek <[email protected]>
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp:
explicit default param no longer needed
[16cbedc7335f]
* include/laszip/lasunzipper.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp, src/lasreadpoint.cpp,
src/lasreadpoint.hpp, src/lasunzipper.cpp, src/laswritepoint.cpp,
src/laswritepoint.hpp, src/laszipper.cpp, tools/laszippertest.cpp:
use an enum for the compression type, for type safety
[276b21e82629]
* tools/laszippertest.cpp:
fix err checks on open()
[ce1bdb2a9e26]
* src/bytestreamin_file.hpp, src/bytestreamin_istream.hpp:
remove fprintf calls
[ba16595e644c]
* src/rangemodel.cpp:
remove calls to fprintf, exit
[7af78ceb3bfa]
2010-12-23 isenburg <isenburg>
* src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp:
one last optimization to compress 1.5 percent better
[e815143ce051]
* src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/lasreadpoint.cpp, src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp:
fix of pointreader and small optimization of POINT10 compressor
[113c76a6708b]
* tools/laszippertest.cpp:
added test for new WAVEPACKET13 compressor
[294dfaf3b0d3]
* tools/laszippertest.cpp:
added test for new WAVEPACKET13 compressor
[30313ba06a38]
* src/arithmeticdecoder.cpp, src/arithmeticencoder.cpp,
src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswritepoint.cpp:
updated RGB encoding to be endian neutral
[7770fdf9c7c2]
2010-12-22 Michael P. Gerlek <[email protected]>
* src/laszip.cpp:
sync up w/ Martin's versioning
[4daf73355dc6]
* src/lasreadpoint.cpp:
memleak
[aabe8bc36fb0]
* include/laszip/laszip.hpp, src/CMakeLists.txt, src/Makefile.am,
src/lasunzipper.cpp, src/laszip.cpp, src/laszipper.cpp:
move header functions into .cpp file
[b939bfb7bdf7]
* tools/laszippertest.cpp:
sync w/ Martin's changes
[e8f5528c3d30]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp,
src/lasunzipper.cpp, src/laszipper.cpp:
pull-merge
[e651d0722c7e]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout_ostream.hpp,
src/lasunzipper.cpp, src/laszipper.cpp, tools/laszippertest.cpp:
pass streams by ref, not as pointers; return status code on open,
not bool; declare items parameter as an array
[3e5e0ec93ea6]
2010-12-21 isenburg <isenburg>
* src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/lasreaditemraw.hpp, src/lasreadpoint.cpp,
src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswriteitemraw.hpp,
src/laswritepoint.cpp:
renaming to GPSTIME11, RGB12, and WAVEPACKET13
[68e267d04b63]
* include/laszip/laszip.hpp:
added LASzip struct to be used as VLR data
[80c637a74e7a]
2010-12-20 isenburg <isenburg>
* src/lasreaditem.hpp, src/lasreaditemcompressed_v1.cpp,
src/lasreaditemcompressed_v1.hpp, src/lasreadpoint.cpp,
src/lasreadpoint.hpp, src/lasunzipper.cpp, src/laswriteitem.hpp,
src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswriteitemraw.hpp,
src/laswritepoint.cpp, src/laswritepoint.hpp, src/laszipper.cpp:
changing functions to const
[9b06bc82ee1e]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp:
changing functions to const
[af0d76303e5d]
* src/lasreaditemcompressed_v1.cpp, src/lasreaditemcompressed_v1.hpp,
src/lasreadpoint.cpp, src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswritepoint.cpp,
src/laszipper.cpp, src/rangedecoder.cpp, src/rangeencoder.cpp:
more minor changes under the hood
[b49409e2e144]
* include/laszip/laszip.hpp, include/laszip/laszipper.hpp:
minor changes to finalize interface
[035b52b181dc]
2010-12-18 Michael P. Gerlek <[email protected]>
* pull-merge
[b095ef93a1f2]
* include/laszip/laszip.hpp:
added LASitem::set helper
[7e3afedda8ae]
* include/laszip/lasunzipper.hpp:
comment fix
[5138579f7a56]
2010-12-18 isenburg <isenburg>
* src/bytestreamout_ostream.hpp:
merge
[f064ee4d2df4]
* src/bytestreamin_file.hpp, src/bytestreamin_istream.hpp,
src/bytestreamout.hpp, src/bytestreamout_file.hpp,
src/bytestreamout_ostream.hpp:
consolidated all IO paths
[5aaa3c648f10]
* src/bytestreamin_file.hpp, src/bytestreamin_istream.hpp,
src/bytestreamout.hpp, src/bytestreamout_file.hpp,
src/bytestreamout_ostream.hpp:
consolidated all IO paths
[e9118cc24a18]
2010-12-17 Michael P. Gerlek <[email protected]>
* include/laszip/laszip.hpp:
added VERSION constants
[0ef60ec2e07c]
* src/bytestreamout_ostream.hpp:
add cast for vs2010; consolidate byte writer path
[b809c3c0b3bf]
2010-12-17 isenburg <isenburg>
* include/laszip/lasunzipper.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp:
changed LASitem from struct to class
[df98c890f766]
* src/lasreaditemraw.hpp, src/lasreadpoint.cpp,
src/laswriteitemraw.hpp, src/laswritepoint.cpp, src/mydefs.hpp:
updated the endian handling
[c66256ecc759]
* src/bytestreamin.hpp, src/bytestreamin_file.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout.hpp,
src/bytestreamout_file.hpp, src/bytestreamout_ostream.hpp:
updated the endian handling and allow seeking
[473da02e72e3]
2010-12-17 Michael P. Gerlek <[email protected]>
* tools/laszippertest.cpp:
c/p error in stream creation
[41573d80a706]
2010-12-16 Michael P. Gerlek <[email protected]>
* include/laszip/lasunzipper.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp, src/bytestreamin_istream.hpp,
src/bytestreamout_ostream.hpp, tools/laszippertest.cpp:
consolidated the MC6 macro usage
[0c2698631af8]
* include/laszip/liblaszip.hpp, src/liblaszip.cpp:
dead code
[746fbdb3487b]
2010-12-15 Howard Butler <[email protected]>
* tools/laszippertest.cpp:
typo
[1d033bad3a73]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp,
src/CMakeLists.txt, src/Makefile.am, src/bytestreamin_istream.hpp,
src/bytestreamout_ostream.hpp, tools/laszippertest.cpp:
a whole slug of #ifdefs for the VC6 iostream vs stl iostream stuff
-- segfaults currently on OS X
[28c3ef5933da]
2010-12-15 isenburg <isenburg>
* src/rangedecoder.cpp, src/rangedecoder.hpp, src/rangeencoder.cpp,
src/rangeencoder.hpp, src/rangemodel.cpp, src/rangemodel.hpp:
the (slower) rangecoder that was replaced in laszip with the
(faster) arithmetic coder in january 2010
[1fd6740c3f0a]
* tools/laszippertest.cpp:
added rangecoder and improved test output
[7c3e352c29ee]
* src/arithmeticencoder.cpp, src/lasreadpoint.cpp,
src/laswritepoint.cpp:
added rangecoder and fixed read past write issue
[b21103347c21]
* src/bytestreamout_ostream.hpp:
reinsert lost changes
[f066092800a9]
* src/bytestreamin_istream.hpp:
reinsert lost changes
[bf36cb687f49]
* src/bytestreamin.hpp, src/bytestreamin_file.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout_ostream.hpp,
src/lasunzipper.cpp, src/laszipper.cpp:
merging with my code
[e4af65b349e7]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp:
merging with my code
[eafa0e1730af]
* tools/laszippertest.cpp:
added check for input & output bytes
[e7dea1f25db5]
* src/bytestreamin_istream.hpp:
eof instead of bad
[6fc09696ca40]
* src/bytestreamin_istream.hpp:
getting annoyed at hg
[f9bbc9504f92]
* src/bytestreamin_istream.hpp:
getting annoyed at hg
[874ca24b3890]
* src/bytestreamin_istream.hpp:
getting byte count
[a945ff06f7c1]
* src/bytestreamin_istream.hpp:
getting byte count
[c08c950673aa]
2010-12-15 Howard Butler <[email protected]>
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout_ostream.hpp,
src/lasunzipper.cpp, src/laszipper.cpp, tools/laszippertest.cpp:
remove all std:: explicit calls and instead put 'using namespace
std;' in place to allow for usage by vc6
[14b8703b0c4c]
* merge
[74cc4311b468]
* merge
[54e070c6c466]
2010-12-15 isenburg <isenburg>
* merge
[755123ad7728]
* src/lasreaditemrawendianswapped.hpp,
src/laswriteitemrawendianswapped.hpp:
handling big endian writes and reads
[70aa87413dcb]
2010-12-14 Michael P. Gerlek <[email protected]>
* include/laszip/laszipper.hpp, src/bytestreamin_istream.hpp,
src/bytestreamout_ostream.hpp, tools/laszippertest.cpp:
refine MSC_VER for vc6 usage
[d434ceaf93ac]
2010-12-14 isenburg <isenburg>
* src/lasreadpoint.cpp, src/laswritepoint.cpp, src/mydefs.hpp:
handling of raw point writing on big endian platforms
[a2f165041d2a]
* tools/laszippertest.cpp:
it was not using streams but FILE* ... try again. i get a bug.
[8df920c36a44]
2010-12-14 Howard Butler <[email protected]>
* .hgignore, include/laszip/Makefile.am, tools/Makefile.am:
update autoconf build
[487fafda44f2]
* include/laszip/laszipper.hpp, src/CMakeLists.txt,
src/bytestreamin_istream.hpp, src/bytestreamout_ostream.hpp,
src/laszipper.cpp, src/laszippertest.cpp, tools/CMakeLists.txt,
tools/laszippertest.cpp:
Use explicit std:: prefix for streams, move laszippertest into the
tools directory, turn off lasdiff and laszip for now, as these
depend on LAStools.
[ab8bf5e582b0]
* include/laszip/lasunzipper.hpp, src/bytestreamin_istream.hpp,
src/lasunzipper.cpp:
merge
[b33531f25c48]
2010-12-14 isenburg <isenburg>
* src/mydefs.hpp:
missing header file
[abac5891d7de]
2010-12-13 Michael P. Gerlek <[email protected]>
* src/CMakeLists.txt:
sync w/ Martin's changes
[aa2026d10a92]
* CMakeLists.txt, tools/lasdiff.cpp, tools/laszip.cpp:
move win32 DEPRECATE stuff into CMake
[bd3dd914ed48]
2010-12-13 isenburg <isenburg>
* src/Makefile.am:
updated for new laszip sources
[be0f660c109b]
* src/arithmeticdecoder.cpp, src/arithmeticdecoder.hpp,
src/arithmeticencoder.cpp, src/arithmeticencoder.hpp,
src/arithmeticmodel.cpp, src/arithmeticmodel.hpp,
src/bytestreamin.hpp, src/bytestreamin_file.hpp,
src/bytestreamin_istream.hpp, src/bytestreamout.hpp,
src/bytestreamout_file.hpp, src/bytestreamout_ostream.hpp,
src/entropydecoder.hpp, src/entropyencoder.hpp,
src/integercompressor.cpp, src/integercompressor.hpp,
src/lasreaditem.hpp, src/lasreaditemcompressed_v1.cpp,
src/lasreaditemcompressed_v1.hpp, src/lasreaditemraw.hpp,
src/lasreadpoint.cpp, src/lasreadpoint.hpp, src/lasunzipper.cpp,
src/laswriteitem.hpp, src/laswriteitemcompressed_v1.cpp,
src/laswriteitemcompressed_v1.hpp, src/laswriteitemraw.hpp,
src/laswritepoint.cpp, src/laswritepoint.hpp, src/laszipper.cpp,
src/laszippertest.cpp:
adding refactored laszip compressor modules
[0c9f175d3633]
* include/laszip/lasunzipper.hpp, include/laszip/laszipper.hpp:
added optional FILE* input. iostream still broken.
[3123c08f132f]
* include/laszip/lasdefinitions.hpp,
include/laszip/laspointreader.hpp,
include/laszip/laspointreader0compressed.hpp,
include/laszip/laspointreader0compressedarithmetic.hpp,
include/laszip/laspointreader0raw.hpp,
include/laszip/laspointreader1compressed.hpp,
include/laszip/laspointreader1compressedarithmetic.hpp,
include/laszip/laspointreader1raw.hpp,
include/laszip/laspointreader2compressed.hpp,
include/laszip/laspointreader2compressedarithmetic.hpp,
include/laszip/laspointreader2raw.hpp,
include/laszip/laspointreader3compressed.hpp,
include/laszip/laspointreader3compressedarithmetic.hpp,
include/laszip/laspointreader3raw.hpp,
include/laszip/laspointwriter.hpp,
include/laszip/laspointwriter0compressed.hpp,
include/laszip/laspointwriter0compressedarithmetic.hpp,
include/laszip/laspointwriter0raw.hpp,
include/laszip/laspointwriter1compressed.hpp,
include/laszip/laspointwriter1compressedarithmetic.hpp,
include/laszip/laspointwriter1raw.hpp,
include/laszip/laspointwriter2compressed.hpp,
include/laszip/laspointwriter2compressedarithmetic.hpp,
include/laszip/laspointwriter2raw.hpp,
include/laszip/laspointwriter3compressed.hpp,
include/laszip/laspointwriter3compressedarithmetic.hpp,
include/laszip/laspointwriter3raw.hpp, include/laszip/lasreader.hpp,
include/laszip/laswriter.hpp, src/arithmeticdecoder.cpp,
src/arithmeticdecoder.hpp, src/arithmeticencoder.cpp,
src/arithmeticencoder.hpp, src/arithmeticintegercompressor.cpp,
src/arithmeticintegercompressor.hpp, src/arithmeticmodel.cpp,
src/arithmeticmodel.hpp, src/laspointreader0compressed.cpp,
src/laspointreader0compressedarithmetic.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader1compressedarithmetic.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader2compressedarithmetic.cpp,
src/laspointreader3compressed.cpp,
src/laspointreader3compressedarithmetic.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter0compressedarithmetic.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter1compressedarithmetic.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter2compressedarithmetic.cpp,
src/laspointwriter3compressed.cpp,
src/laspointwriter3compressedarithmetic.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/mydefs.hpp, src/rangedecoder.cpp,
src/rangedecoder.hpp, src/rangeencoder.cpp, src/rangeencoder.hpp,
src/rangeintegercompressor.cpp, src/rangeintegercompressor.hpp,
src/rangemodel.cpp, src/rangemodel.hpp:
removing all classes that are no longer relevant
[6a9f0a4f6c9d]
2010-12-12 isenburg <isenburg>
* include/laszip/lasunzipper.hpp, include/laszip/laszip.hpp,
include/laszip/laszipper.hpp, src/laszippertest.cpp:
more modular interface for liblas integration. only three
headerfiles. example use given. still some missing files under the
hood dur to remaining bugs
[9920c10ae49b]
2010-12-11 Michael P. Gerlek <[email protected]>
* AUTHORS:
(testing hg config)
[0b0935082266]
2010-12-11 Michael P. Gerlek <[email protected]>
* include/laszip/liblaszip.hpp, src/CMakeLists.txt, src/liblaszip.cpp:
stub out a stake in the ground for "liblaszip" exported interface
[afc43d3fa954]
* .hgignore:
VS2010 lint
[cf76d7769d6f]
* tools/lasdiff.cpp, tools/laszip.cpp:
remove gzip usage; elide some windows warnings
[835d4fdaeb9b]
2010-12-01 Howard Butler <[email protected]>
* .hgignore, CMakeLists.txt, Makefile.am,
cmake/laszip.vcproj.user.template, configure.ac,
include/CMakeLists.txt, include/Makefile.am,
include/lasdefinitions.h, include/laspointreader.h,
include/laspointreader0compressed.h,
include/laspointreader0compressedarithmetic.h,
include/laspointreader0raw.h, include/laspointreader1compressed.h,
include/laspointreader1compressedarithmetic.h,
include/laspointreader1raw.h, include/laspointreader2compressed.h,
include/laspointreader2compressedarithmetic.h,
include/laspointreader2raw.h, include/laspointreader3compressed.h,
include/laspointreader3compressedarithmetic.h,
include/laspointreader3raw.h, include/laspointwriter.h,
include/laspointwriter0compressed.h,
include/laspointwriter0compressedarithmetic.h,
include/laspointwriter0raw.h, include/laspointwriter1compressed.h,
include/laspointwriter1compressedarithmetic.h,
include/laspointwriter1raw.h, include/laspointwriter2compressed.h,
include/laspointwriter2compressedarithmetic.h,
include/laspointwriter2raw.h, include/laspointwriter3compressed.h,
include/laspointwriter3compressedarithmetic.h,
include/laspointwriter3raw.h, include/lasreader.h,
include/laswriter.h, include/laszip/Makefile.am,
include/laszip/lasdefinitions.hpp,
include/laszip/laspointreader.hpp,
include/laszip/laspointreader0compressed.hpp,
include/laszip/laspointreader0compressedarithmetic.hpp,
include/laszip/laspointreader0raw.hpp,
include/laszip/laspointreader1compressed.hpp,
include/laszip/laspointreader1compressedarithmetic.hpp,
include/laszip/laspointreader1raw.hpp,
include/laszip/laspointreader2compressed.hpp,
include/laszip/laspointreader2compressedarithmetic.hpp,
include/laszip/laspointreader2raw.hpp,
include/laszip/laspointreader3compressed.hpp,
include/laszip/laspointreader3compressedarithmetic.hpp,
include/laszip/laspointreader3raw.hpp,
include/laszip/laspointwriter.hpp,
include/laszip/laspointwriter0compressed.hpp,
include/laszip/laspointwriter0compressedarithmetic.hpp,
include/laszip/laspointwriter0raw.hpp,
include/laszip/laspointwriter1compressed.hpp,
include/laszip/laspointwriter1compressedarithmetic.hpp,
include/laszip/laspointwriter1raw.hpp,
include/laszip/laspointwriter2compressed.hpp,
include/laszip/laspointwriter2compressedarithmetic.hpp,
include/laszip/laspointwriter2raw.hpp,
include/laszip/laspointwriter3compressed.hpp,
include/laszip/laspointwriter3compressedarithmetic.hpp,
include/laszip/laspointwriter3raw.hpp, include/laszip/lasreader.hpp,
include/laszip/laswriter.hpp, src/CMakeLists.txt, src/Makefile.am,
src/arithmeticdecoder.cpp, src/arithmeticdecoder.h,
src/arithmeticdecoder.hpp, src/arithmeticencoder.cpp,
src/arithmeticencoder.h, src/arithmeticencoder.hpp,
src/arithmeticintegercompressor.cpp,
src/arithmeticintegercompressor.h,
src/arithmeticintegercompressor.hpp, src/arithmeticmodel.cpp,
src/arithmeticmodel.h, src/arithmeticmodel.hpp,
src/laspointreader0compressed.cpp,
src/laspointreader0compressedarithmetic.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader1compressedarithmetic.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader2compressedarithmetic.cpp,
src/laspointreader3compressed.cpp,
src/laspointreader3compressedarithmetic.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter0compressedarithmetic.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter1compressedarithmetic.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter2compressedarithmetic.cpp,
src/laspointwriter3compressed.cpp,
src/laspointwriter3compressedarithmetic.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/mydefs.h, src/mydefs.hpp,
src/rangedecoder.cpp, src/rangedecoder.h, src/rangedecoder.hpp,
src/rangeencoder.cpp, src/rangeencoder.h, src/rangeencoder.hpp,
src/rangeintegercompressor.cpp, src/rangeintegercompressor.h,
src/rangeintegercompressor.hpp, src/rangemodel.cpp,
src/rangemodel.h, src/rangemodel.hpp, tools/CMakeLists.txt,
tools/Makefile.am, tools/lasdiff.cpp, tools/laszip.cpp:
rename all header files from .h to .hpp. Move include files from
include/ to include/laszip. Provide CMake configuration.
[29f7d17058cc]
2010-01-19 Martin Isenburg <[email protected]>
* include/lasdefinitions.h, include/laspointreader.h,
include/laspointreader0compressed.h,
include/laspointreader0compressedarithmetic.h,
include/laspointreader0raw.h, include/laspointreader1compressed.h,
include/laspointreader1compressedarithmetic.h,
include/laspointreader1raw.h, include/laspointreader2compressed.h,
include/laspointreader2compressedarithmetic.h,
include/laspointreader2raw.h, include/laspointreader3compressed.h,
include/laspointreader3compressedarithmetic.h,
include/laspointreader3raw.h, include/laspointwriter.h,
include/laspointwriter0compressed.h,
include/laspointwriter0compressedarithmetic.h,
include/laspointwriter0raw.h, include/laspointwriter1compressed.h,
include/laspointwriter1compressedarithmetic.h,
include/laspointwriter1raw.h, include/laspointwriter2compressed.h,
include/laspointwriter2compressedarithmetic.h,
include/laspointwriter2raw.h, include/laspointwriter3compressed.h,
include/laspointwriter3compressedarithmetic.h,
include/laspointwriter3raw.h, include/lasreader.h,
include/laswriter.h, src/arithmeticdecoder.cpp,
src/arithmeticencoder.cpp, src/arithmeticintegercompressor.cpp,
src/arithmeticmodel.cpp, src/laspointreader0compressed.cpp,
src/laspointreader0compressedarithmetic.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader1compressedarithmetic.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader2compressedarithmetic.cpp,
src/laspointreader3compressed.cpp,
src/laspointreader3compressedarithmetic.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter0compressedarithmetic.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter1compressedarithmetic.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter2compressedarithmetic.cpp,
src/laspointwriter3compressed.cpp,
src/laspointwriter3compressedarithmetic.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/rangeintegercompressor.cpp,
tools/Makefile.am, tools/lasdiff.cpp:
ran dos2unix & added lasdiff
[ebbe9f97a0c9]
* src/arithmeticdecoder.h, src/arithmeticencoder.h,
src/arithmeticintegercompressor.h, src/arithmeticmodel.h,
src/mydefs.h, src/rangeintegercompressor.h:
ran dos2unix
[ca54d41a4d88]
2010-01-19 Howard Butler <[email protected]>
* .hgignore, Makefile.am, configure.ac, tools/Makefile.am,
tools/laszip.cpp, tools/src/Makefile.am, tools/src/laszip.cpp:
enable laszip building
[df37a075671b]
* merging
[cfa49ef4b213]
* src/Makefile.am:
use tabs instead of spaces in makefiles
[e31d088e1cf4]
2010-01-19 Martin Isenburg <[email protected]>
* tools/src/Makefile.am, tools/src/laszip.cpp:
adding an actual executable
[25e79f6803e2]
2010-01-19 Howard Butler <[email protected]>
* src/arithmeticmodel.cpp:
remove extraneous ;
[ba3b839989fd]
2010-01-19 Martin Isenburg <[email protected]>
* Makefile.am, configure.ac:
those also needed to be changed
[64cb2e788e39]
* include/lasdefinitions.h, include/laspointreader.h,
include/laspointreader0compressed.h,
include/laspointreader0compressedarithmetic.h,
include/laspointreader0raw.h, include/laspointreader1compressed.h,
include/laspointreader1compressedarithmetic.h,
include/laspointreader1raw.h, include/laspointreader2compressed.h,
include/laspointreader2compressedarithmetic.h,
include/laspointreader2raw.h, include/laspointreader3compressed.h,
include/laspointreader3compressedarithmetic.h,
include/laspointreader3raw.h, include/laspointwriter.h,
include/laspointwriter0compressed.h,
include/laspointwriter0compressedarithmetic.h,
include/laspointwriter0raw.h, include/laspointwriter1compressed.h,
include/laspointwriter1compressedarithmetic.h,
include/laspointwriter1raw.h, include/laspointwriter2compressed.h,
include/laspointwriter2compressedarithmetic.h,
include/laspointwriter2raw.h, include/laspointwriter3compressed.h,
include/laspointwriter3compressedarithmetic.h,
include/laspointwriter3raw.h, include/lasreader.h,
include/laswriter.h, src/arithmeticdecoder.cpp,
src/arithmeticdecoder.h, src/arithmeticencoder.cpp,
src/arithmeticencoder.h, src/arithmeticintegercompressor.cpp,
src/arithmeticintegercompressor.h, src/arithmeticmodel.cpp,
src/arithmeticmodel.h, src/laspointreader0compressed.cpp,
src/laspointreader0compressedarithmetic.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader1compressedarithmetic.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader2compressedarithmetic.cpp,
src/laspointreader3compressed.cpp,
src/laspointreader3compressedarithmetic.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter0compressedarithmetic.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter1compressedarithmetic.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter2compressedarithmetic.cpp,
src/laspointwriter3compressed.cpp,
src/laspointwriter3compressedarithmetic.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/mydefs.h, src/rangedecoder.cpp,
src/rangedecoder.h, src/rangeencoder.cpp, src/rangeencoder.h,
src/rangeintegercompressor.cpp, src/rangeintegercompressor.h,
src/rangemodel.cpp, src/rangemodel.h:
added the licensing info again
[0fccefe7392d]
* src/Makefile.am, src/arithmeticdecoder.cpp, src/arithmeticdecoder.h,
src/arithmeticencoder.cpp, src/arithmeticencoder.h,
src/arithmeticintegercompressor.cpp,
src/arithmeticintegercompressor.h, src/arithmeticmodel.cpp,
src/arithmeticmodel.h, src/laspointreader0compressed.cpp,
src/laspointreader0compressedarithmetic.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader1compressedarithmetic.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader2compressedarithmetic.cpp,
src/laspointreader3compressed.cpp,
src/laspointreader3compressedarithmetic.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter0compressedarithmetic.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter1compressedarithmetic.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter2compressedarithmetic.cpp,
src/laspointwriter3compressed.cpp,
src/laspointwriter3compressedarithmetic.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/mydefs.h, src/rangedecoder.cpp,
src/rangedecoder.h, src/rangeencoder.cpp, src/rangeencoder.h,
src/rangeintegercompressor.cpp, src/rangeintegercompressor.h,
src/rangemodel.cpp, src/rangemodel.h:
adding arithmetic coder to main branch
[d29c316a530c]
* include/Makefile.am, include/lasdefinitions.h,
include/laspointreader.h, include/laspointreader0compressed.h,
include/laspointreader0compressedarithmetic.h,
include/laspointreader0raw.h, include/laspointreader1compressed.h,
include/laspointreader1compressedarithmetic.h,
include/laspointreader1raw.h, include/laspointreader2compressed.h,
include/laspointreader2compressedarithmetic.h,
include/laspointreader2raw.h, include/laspointreader3compressed.h,
include/laspointreader3compressedarithmetic.h,
include/laspointreader3raw.h, include/laspointwriter.h,
include/laspointwriter0compressed.h,
include/laspointwriter0compressedarithmetic.h,
include/laspointwriter0raw.h, include/laspointwriter1compressed.h,
include/laspointwriter1compressedarithmetic.h,
include/laspointwriter1raw.h, include/laspointwriter2compressed.h,
include/laspointwriter2compressedarithmetic.h,
include/laspointwriter2raw.h, include/laspointwriter3compressed.h,
include/laspointwriter3compressedarithmetic.h,
include/laspointwriter3raw.h, include/lasreader.h,
include/laswriter.h:
adding arithmetic coder to the main branch
[d0eb808ce138]
2010-01-18 Martin Isenburg <[email protected]>
* src/alternate_coder_src/Makefile.am,
src/alternate_coder_src/arithmeticdecoder.cpp,
src/alternate_coder_src/arithmeticdecoder.h,
src/alternate_coder_src/arithmeticencoder.cpp,
src/alternate_coder_src/arithmeticencoder.h,
src/alternate_coder_src/arithmeticmodel.cpp,
src/alternate_coder_src/arithmeticmodel.h,
src/alternate_coder_src/integercompressor_newest.cpp,
src/alternate_coder_src/integercompressor_newest.h,
src/alternate_coder_src/laspointreader0compressed.cpp,
src/alternate_coder_src/laspointreader0compressed.h,
src/alternate_coder_src/laspointreader1compressed.cpp,
src/alternate_coder_src/laspointreader1compressed.h,
src/alternate_coder_src/laspointreader2compressed.cpp,
src/alternate_coder_src/laspointreader2compressed.h,
src/alternate_coder_src/laspointreader3compressed.cpp,
src/alternate_coder_src/laspointreader3compressed.h,
src/alternate_coder_src/laspointwriter0compressed.cpp,
src/alternate_coder_src/laspointwriter0compressed.h,
src/alternate_coder_src/laspointwriter1compressed.cpp,
src/alternate_coder_src/laspointwriter1compressed.h,
src/alternate_coder_src/laspointwriter2compressed.cpp,
src/alternate_coder_src/laspointwriter2compressed.h,
src/alternate_coder_src/laspointwriter3compressed.cpp,
src/alternate_coder_src/laspointwriter3compressed.h,
src/integercompressor_context.cpp, src/integercompressor_context.h:
alternate coder moves into main branch
[cfed1d96c9b2]
2010-01-14 Martin Isenburg <[email protected]>
* include/lasdefinitions.h, include/laspointreader.h,
include/laspointreader0compressed.h, include/laspointreader0raw.h,
include/laspointreader1compressed.h, include/laspointreader1raw.h,
include/laspointreader2compressed.h, include/laspointreader2raw.h,
include/laspointreader3compressed.h, include/laspointreader3raw.h,
include/laspointwriter.h, include/laspointwriter0compressed.h,
include/laspointwriter0raw.h, include/laspointwriter1compressed.h,
include/laspointwriter1raw.h, include/laspointwriter2compressed.h,
include/laspointwriter2raw.h, include/laspointwriter3compressed.h,
include/laspointwriter3raw.h, include/lasreader.h,
include/laswriter.h, src/Makefile.am,
src/alternate_coder_src/arithmeticdecoder.cpp,
src/alternate_coder_src/arithmeticdecoder.h,
src/alternate_coder_src/arithmeticencoder.cpp,
src/alternate_coder_src/arithmeticencoder.h,
src/alternate_coder_src/arithmeticmodel.cpp,
src/alternate_coder_src/arithmeticmodel.h,
src/alternate_coder_src/integercompressor_newest.cpp,
src/alternate_coder_src/integercompressor_newest.h,
src/alternate_coder_src/laspointreader0compressed.cpp,
src/alternate_coder_src/laspointreader0compressed.h,
src/alternate_coder_src/laspointreader1compressed.cpp,
src/alternate_coder_src/laspointreader1compressed.h,
src/alternate_coder_src/laspointreader2compressed.cpp,
src/alternate_coder_src/laspointreader2compressed.h,
src/alternate_coder_src/laspointreader3compressed.cpp,
src/alternate_coder_src/laspointreader3compressed.h,
src/alternate_coder_src/laspointwriter0compressed.cpp,
src/alternate_coder_src/laspointwriter0compressed.h,
src/alternate_coder_src/laspointwriter1compressed.cpp,
src/alternate_coder_src/laspointwriter1compressed.h,
src/alternate_coder_src/laspointwriter2compressed.cpp,
src/alternate_coder_src/laspointwriter2compressed.h,
src/alternate_coder_src/laspointwriter3compressed.cpp,
src/alternate_coder_src/laspointwriter3compressed.h,
src/integercompressor_context.cpp, src/integercompressor_context.h,
src/integercompressor_newer.cpp, src/integercompressor_newer.h,
src/laspointreader0compressed.cpp,
src/laspointreader1compressed.cpp,
src/laspointreader2compressed.cpp,
src/laspointreader3compressed.cpp,
src/laspointwriter0compressed.cpp,
src/laspointwriter1compressed.cpp,
src/laspointwriter2compressed.cpp,
src/laspointwriter3compressed.cpp, src/lasreader.cpp,
src/laswriter.cpp, src/mydefs.h, src/rangedecoder.cpp,
src/rangedecoder.h, src/rangeencoder.cpp, src/rangeencoder.h,
src/rangemodel.cpp, src/rangemodel.h:
major overhaul of the compressor
[692c74f8ff3a]
2010-01-12 isenburg <[email protected]>
* src/Makefile.am:
no need for alternate coder right now
[e146f02b4f17]
* src/rangedecoder.cpp:
ull for constant
[c84afd310afe]
* src/rangeencoder.cpp:
ull for constant
[ef8f6323567e]
2010-01-12 Howard Butler <[email protected]>
* .hgignore, INSTALL, Makefile.am, src/Makefile.am:
fix up compilation issues
[f77c6eb550d7]
* .hgignore, ChangeLog, Makefile.am, NEWS, README:
add missing stuff so things can build
[ac088d1ea74b]
2010-01-04 Howard Butler <[email protected]>