forked from libspatialindex/libspatialindex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1415 lines (959 loc) · 47.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-10-14 Howard Butler <[email protected]>
* Makefile.am: oops, need line separators
2011-10-14 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog
2011-10-14 Howard Butler <[email protected]>
* Makefile.am: distribut test running scripts too
2011-10-14 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog
2011-10-14 Howard Butler <[email protected]>
* src/tools/rand48.cc: newline
2011-10-14 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog
2011-10-14 Howard Butler <[email protected]>
* include/spatialindex/Version.h: update release date
2011-10-14 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog again
2011-10-14 Howard Butler <[email protected]>
* test/mvrtree/Exhaustive.cc, test/tprtree/Exhaustive.cc,
test/tprtree/RandomGenerator.h: fixes to be able to make things work
on msvc 10
2011-10-14 Howard Butler <[email protected]>
* include/spatialindex/capi/sidx_config.h: only redefine c++0x types
if we're <= msvc_ver 1500
2011-10-14 Howard Butler <[email protected]>
* CMakeLists.txt: add definition to make sure we export symbols in
windows land
2011-10-14 Howard Butler <[email protected]>
* include/spatialindex/capi/sidx_config.h, src/mvrtree/Index.cc,
src/mvrtree/Leaf.cc, src/mvrtree/Node.cc, src/rtree/BulkLoader.cc,
src/rtree/Index.cc, src/rtree/Leaf.cc, src/rtree/Node.cc,
src/storagemanager/RandomEvictionsBuffer.cc, src/tools/Tools.cc,
src/tools/rand48.cc, src/tprtree/Index.cc, src/tprtree/Leaf.cc,
src/tprtree/Node.cc: namespace usings and such to satisfy msvc 10
2011-10-14 Howard Butler <[email protected]>
* .gitignore: more ignores
2011-10-14 Howard Butler <[email protected]>
* makefile.vc: check for msvc 10
2011-10-14 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog
2011-10-14 Howard Butler <[email protected]>
* include/Makefile.am: missing reference to file
2011-10-14 Howard Butler <[email protected]>
* include/Makefile.am: missing reference to file
2011-10-14 Howard Butler <[email protected]>
* src/spatialindex/Makefile.am: this file is now gone
2011-10-14 Howard Butler <[email protected]>
* .gitignore, configure.ac, src/Makefile.am,
src/libspatialindex.pc.in: add pkg-config script for libspatialindex
-- autoconf build only for now
2011-10-14 Howard Butler <[email protected]>
* src/CMakeLists.txt: typo
2011-10-14 Howard Butler <[email protected]>
* include/Makefile.am, include/spatialindex/Makefile.am: move
Makefile.am up
2011-10-14 Howard Butler <[email protected]>
* include/Makefile.am, include/spatialindex/Makefile.am,
include/spatialindex/capi/Makefile.am,
include/spatialindex/tools/Makefile.am: start fixing up automake
include structure
2011-10-14 Howard Butler <[email protected]>
* src/tools/Makefile.am: include was still busted
2011-10-14 Howard Butler <[email protected]>
* src/tools/Makefile.am: fix include path
2011-10-14 Howard Butler <[email protected]>
* CMakeLists.txt: add function detection to cmake config
2011-10-14 Howard Butler <[email protected]>
* docs/source/index.txt: point to doxygen output
2011-10-14 Howard Butler <[email protected]>
* docs/source/development.txt, docs/source/download.txt,
docs/source/index.txt, docs/source/install.txt,
docs/source/introduction.txt, docs/source/overview.txt: more doc
rearranging
2011-10-14 Howard Butler <[email protected]>
* docs/doxygen/doxygen.conf, docs/doxygen/doxygen.css: add doxygen
configuration -- run doxygen docs/doxygen/doxygen.conf from the top
level directory to get output
2011-10-14 Howard Butler <[email protected]>
* .gitignore: more ignore
2011-10-14 Howard Butler <[email protected]>
* .gitignore: more ignores
2011-10-13 Howard Butler <[email protected]>
* src/spatialindex/MovingPoint.cc: a little proposed whitespace
normalization -- my terminal isn't 250 characters long :)
2011-10-13 Howard Butler <[email protected]>
* include/spatialindex/MovingRegion.h,
include/spatialindex/Point.h, include/spatialindex/Region.h,
include/spatialindex/SpatialIndex.h,
include/spatialindex/TimeRegion.h, src/mvrtree/Index.cc,
src/mvrtree/Leaf.cc, src/mvrtree/MVRTree.cc, src/mvrtree/Node.cc,
src/mvrtree/Statistics.cc, src/rtree/BulkLoader.cc,
src/rtree/Index.cc, src/rtree/Leaf.cc, src/rtree/Node.cc,
src/rtree/PointerPoolNode.h, src/rtree/RTree.cc,
src/rtree/Statistics.cc, src/spatialindex/SpatialIndexImpl.cc,
src/spatialindex/SpatialIndexImpl.h, src/storagemanager/Buffer.cc,
src/storagemanager/DiskStorageManager.cc,
src/storagemanager/MemoryStorageManager.cc, src/tprtree/Index.cc,
src/tprtree/Leaf.cc, src/tprtree/Node.cc,
src/tprtree/PointerPoolNode.h, src/tprtree/Statistics.cc,
src/tprtree/TPRTree.cc: remove SpatialIndexImpl.h, which didn't seem
to be used to hide the implementation and was contributing to
relative include spaghetti
2011-10-13 Howard Butler <[email protected]>
* test/CMakeLists.txt, test/mvrtree/Generator.cc,
test/mvrtree/MVRTreeLoad.cc, test/mvrtree/MVRTreeQuery.cc,
test/rtree/Exhaustive.cc, test/rtree/Generator.cc,
test/rtree/RTreeBulkLoad.cc, test/rtree/RTreeLoad.cc,
test/rtree/RTreeQuery.cc, test/tprtree/RandomGenerator.h,
test/tprtree/TPRTreeLoad.cc, test/tprtree/TPRTreeQuery.cc: #include
file deck chair rearrangement
2011-10-13 Howard Butler <[email protected]>
* CMakeLists.txt, configure.ac, include/LineSegment.h,
include/MVRTree.h, include/Makefile.am, include/MovingPoint.h,
include/MovingRegion.h, include/Point.h, include/RTree.h,
include/Region.h, include/SpatialIndex.h, include/TPRTree.h,
include/TimePoint.h, include/TimeRegion.h, include/Version.h,
include/capi/BoundsQuery.h, include/capi/CountVisitor.h,
include/capi/CustomStorage.h, include/capi/DataStream.h,
include/capi/Error.h, include/capi/IdVisitor.h,
include/capi/Index.h, include/capi/LeafQuery.h,
include/capi/Makefile.am, include/capi/ObjVisitor.h,
include/capi/Utility.h, include/capi/sidx_api.h,
include/capi/sidx_config.h, include/capi/sidx_impl.h,
include/spatialindex/LineSegment.h, include/spatialindex/MVRTree.h,
include/spatialindex/Makefile.am,
include/spatialindex/MovingPoint.h,
include/spatialindex/MovingRegion.h, include/spatialindex/Point.h,
include/spatialindex/RTree.h, include/spatialindex/Region.h,
include/spatialindex/SpatialIndex.h,
include/spatialindex/TPRTree.h, include/spatialindex/TimePoint.h,
include/spatialindex/TimeRegion.h, include/spatialindex/Version.h,
include/spatialindex/capi/BoundsQuery.h,
include/spatialindex/capi/CountVisitor.h,
include/spatialindex/capi/CustomStorage.h,
include/spatialindex/capi/DataStream.h,
include/spatialindex/capi/Error.h,
include/spatialindex/capi/IdVisitor.h,
include/spatialindex/capi/Index.h,
include/spatialindex/capi/LeafQuery.h,
include/spatialindex/capi/Makefile.am,
include/spatialindex/capi/ObjVisitor.h,
include/spatialindex/capi/Utility.h,
include/spatialindex/capi/sidx_api.h,
include/spatialindex/capi/sidx_config.h,
include/spatialindex/capi/sidx_impl.h,
include/spatialindex/tools/Makefile.am,
include/spatialindex/tools/PointerPool.h,
include/spatialindex/tools/PoolPointer.h,
include/spatialindex/tools/SmartPointer.h,
include/spatialindex/tools/Tools.h,
include/spatialindex/tools/rand48.h, include/tools/Makefile.am,
include/tools/PointerPool.h, include/tools/PoolPointer.h,
include/tools/SmartPointer.h, include/tools/Tools.h,
include/tools/rand48.h, src/CMakeLists.txt,
src/capi/BoundsQuery.cc, src/capi/CountVisitor.cc,
src/capi/CustomStorage.cc, src/capi/DataStream.cc,
src/capi/Error.cc, src/capi/IdVisitor.cc, src/capi/Index.cc,
src/capi/LeafQuery.cc, src/capi/ObjVisitor.cc, src/capi/Utility.cc,
src/capi/sidx_api.cc, src/spatialindex/LineSegment.cc,
src/spatialindex/MovingPoint.cc, src/spatialindex/MovingRegion.cc,
src/spatialindex/Point.cc, src/spatialindex/Region.cc,
src/spatialindex/SpatialIndexImpl.h, src/spatialindex/TimePoint.cc,
src/spatialindex/TimeRegion.cc,
src/storagemanager/RandomEvictionsBuffer.cc, src/tools/Tools.cc:
#include file deck chair rearrangement
2011-10-13 Howard Butler <[email protected]>
* CMakeLists.txt: don't add -ansi to clang compiles
2011-10-13 Howard Butler <[email protected]>
* src/mvrtree/Node.cc, src/rtree/Node.cc,
src/spatialindex/MovingPoint.cc, src/spatialindex/MovingRegion.cc,
src/spatialindex/Point.cc, src/tprtree/Node.cc: unsigned values can
never be <0, no need to test for this
2011-10-13 Howard Butler <[email protected]>
* include/capi/Error.h, include/capi/LeafQuery.h,
src/capi/CountVisitor.cc, src/capi/DataStream.cc,
src/capi/Index.cc, src/capi/Utility.cc: clean up some warnings that
clang found
2011-10-13 Howard Butler <[email protected]>
* src/spatialindex/Region.cc: unsigned values can never be <0, no
need to test for this
2011-10-11 Howard Butler <[email protected]>
* .gitignore: regressiontest directory changed names
2011-10-11 Howard Butler <[email protected]>
* CMakeLists.txt, Makefile.am, configure.ac,
regressiontest/CMakeLists.txt, regressiontest/Makefile.am,
regressiontest/mvrtree/Exhaustive.cc,
regressiontest/mvrtree/Generator.cc,
regressiontest/mvrtree/MVRTreeLoad.cc,
regressiontest/mvrtree/MVRTreeQuery.cc,
regressiontest/mvrtree/Makefile.am,
regressiontest/mvrtree/test1/run, regressiontest/mvrtree/test2/run,
regressiontest/rtree/Exhaustive.cc,
regressiontest/rtree/Generator.cc,
regressiontest/rtree/Makefile.am,
regressiontest/rtree/RTreeBulkLoad.cc,
regressiontest/rtree/RTreeBulkLoad.vcproj,
regressiontest/rtree/RTreeExhaustive.vcproj,
regressiontest/rtree/RTreeGenerator.vcproj,
regressiontest/rtree/RTreeLoad.cc,
regressiontest/rtree/RTreeLoad.vcproj,
regressiontest/rtree/RTreeQuery.cc,
regressiontest/rtree/RTreeQuery.vcproj,
regressiontest/rtree/test1/run, regressiontest/rtree/test2/run,
regressiontest/rtree/test3/run, regressiontest/rtree/test4/run,
regressiontest/tprtree/Exhaustive.cc,
regressiontest/tprtree/Generator.cc,
regressiontest/tprtree/Makefile.am,
regressiontest/tprtree/RandomGenerator.cc,
regressiontest/tprtree/RandomGenerator.h,
regressiontest/tprtree/TPRTreeLoad.cc,
regressiontest/tprtree/TPRTreeQuery.cc,
regressiontest/tprtree/test1/run, regressiontest/tprtree/test2/run,
test/CMakeLists.txt, test/Makefile.am, test/mvrtree/Exhaustive.cc,
test/mvrtree/Generator.cc, test/mvrtree/MVRTreeLoad.cc,
test/mvrtree/MVRTreeQuery.cc, test/mvrtree/Makefile.am,
test/mvrtree/test1/run, test/mvrtree/test2/run,
test/rtree/Exhaustive.cc, test/rtree/Generator.cc,
test/rtree/Makefile.am, test/rtree/RTreeBulkLoad.cc,
test/rtree/RTreeBulkLoad.vcproj, test/rtree/RTreeExhaustive.vcproj,
test/rtree/RTreeGenerator.vcproj, test/rtree/RTreeLoad.cc,
test/rtree/RTreeLoad.vcproj, test/rtree/RTreeQuery.cc,
test/rtree/RTreeQuery.vcproj, test/rtree/test1/run,
test/rtree/test2/run, test/rtree/test3/run, test/rtree/test4/run,
test/tprtree/Exhaustive.cc, test/tprtree/Generator.cc,
test/tprtree/Makefile.am, test/tprtree/RandomGenerator.cc,
test/tprtree/RandomGenerator.h, test/tprtree/TPRTreeLoad.cc,
test/tprtree/TPRTreeQuery.cc, test/tprtree/test1/run,
test/tprtree/test2/run: rename regressiontest directory to test/
directory for added clarity. maybe next release we can have these
test be auto-run with 'make test'
2011-10-11 Howard Butler <[email protected]>
* CMakeLists.txt, configure.ac, include/tools/rand48.h,
src/CMakeLists.txt, src/storagemanager/RandomEvictionsBuffer.cc,
src/tools/Makefile.am, src/tools/Tools.cc, src/tools/rand48.cc:
check for an existing srand48, and if we have it, don't use our
local one
2011-10-11 Howard Butler <[email protected]>
* regressiontest/CMakeLists.txt: CMake for regressiontests
2011-10-10 Howard Butler <[email protected]>
* docs/source/development.txt, docs/source/download.txt,
docs/source/index.txt, docs/source/install.txt,
docs/source/introduction.txt: start organizing docs
2011-10-10 Howard Butler <[email protected]>
* HOWTORELEASE.txt: update CMakeLists.txt when releasing too
2011-10-10 Howard Butler <[email protected]>
* CMakeLists.txt: c/p fix
2011-10-10 Howard Butler <[email protected]>
* docs/source/_static/dummy, docs/source/index.txt: add dummy file
2011-10-10 Howard Butler <[email protected]>
* docs/Makefile: makefile for sphinx
2011-10-10 Howard Butler <[email protected]>
* CMakeLists.txt, src/CMakeLists.txt: more cmake config
2011-10-10 Howard Butler <[email protected]>
* .gitignore: ignore more
2011-10-10 Howard Butler <[email protected]>
* src/capi/DataStream.cc: clean up warning
2011-10-09 Howard Butler <[email protected]>
* CMakeLists.txt, src/CMakeLists.txt: add cmake config
2011-10-09 Howard Butler <[email protected]>
* .gitignore: ignore cmake stuff
2011-10-06 Howard Butler <[email protected]>
* configure.ac, include/tools/rand48.h, src/tools/rand48.cc: attempt
2 on #1 to fix rand in stdlib on newer gcc's
2011-10-06 Howard Butler <[email protected]>
* include/tools/rand48.h: a fix for #1 because gcc 4.5.2 appears to
have these defined in stdlib.h
2011-09-26 Howard Butler <[email protected]>
* .gitignore, docs/source/conf.py, docs/source/index.txt: add
documentation for http://libspatialindex.github.com
2011-09-25 Howard Butler <[email protected]>
* configure.ac, include/Version.h, makefile.vc: increment versions
in preparation for release
2011-07-15 Howard Butler <[email protected]>
* include/capi/sidx_api.h, src/capi/sidx_api.cc: use int64_t for IDs
instead of uint64_t's
2011-07-15 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: clean up warnings
2011-07-15 Howard Butler <[email protected]>
* src/rtree/RTree.cc: initialize variables to 0's before we use them
2011-07-15 Howard Butler <[email protected]>
* src/rtree/BulkLoader.h: fix up initialization order
2011-07-15 Howard Butler <[email protected]>
* configure.ac: use -pedantic for compilation
2011-07-15 Howard Butler <[email protected]>
* .gitignore: add .gitignore
2011-05-18 Marios Hadjieleftheriou <[email protected]>
* : 1 1 README - - spatialindex.suo
2011-01-10 Marios Hadjieleftheriou <[email protected]>
* : 1 0 README
2010-11-22 Sean Gillies <[email protected]>
* src/capi/sidx_api.cc: Fix test of length value
2010-11-22 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: whitespace normalization
2010-11-22 Sean Gillies <[email protected]>
* src/capi/sidx_api.cc: Add up deltas for multidimensional input
2010-11-22 Sean Gillies <[email protected]>
* src/capi/sidx_api.cc: Add up deltas for multidimensional input
2010-11-22 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: revert r193
2010-11-22 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: we should set isPoint to true if we pass our
epsilon test -- this didn't work before
2010-10-14 Marios Hadjieleftheriou <[email protected]>
* include/tools/Tools.h, src/tools/Tools.cc: Removed
nextUnifromLongDouble. It was incorrect
2010-10-13 Marios Hadjieleftheriou <[email protected]>
* include/tools/Tools.h, src/tools/Tools.cc: Added
nextUniformLongDouble
2010-09-16 Howard Butler <[email protected]>
* Makefile.am: fix #25 and include visual studio files in the
release
2010-09-16 Howard Butler <[email protected]>
* makefile.vc: bump versions in preparation for release
2010-09-16 Howard Butler <[email protected]>
* configure.ac, include/Version.h: bump versions in preparation for
release
2010-06-19 Howard Butler <[email protected]>
* include/capi/CustomStorage.h, include/capi/Index.h,
include/capi/Makefile.am, include/capi/sidx_api.h,
include/capi/sidx_config.h, include/capi/sidx_impl.h, makefile.vc,
src/capi/CustomStorage.cc, src/capi/Index.cc, src/capi/Makefile.am,
src/capi/Utility.cc, src/capi/sidx_api.cc: add Matthias'
CustomStorage backend for C API
2010-04-21 Howard Butler <[email protected]>
* README: Add Marios' pagesize diatribe to the docs
2010-04-12 Howard Butler <[email protected]>
* ChangeLog: update ChangeLog
2010-04-12 Marios Hadjieleftheriou <[email protected]>
* : 1 1 regressiontest/rtree/Exhaustive.cc
2010-03-31 Howard Butler <[email protected]>
* src/capi/BoundsQuery.cc, src/capi/CountVisitor.cc,
src/capi/DataStream.cc, src/capi/IdVisitor.cc, src/capi/Index.cc,
src/capi/ObjVisitor.cc, src/capi/Utility.cc: format and layout
normalization
2010-03-30 Howard Butler <[email protected]>
* src/spatialindex/MovingRegion.cc: ensure that we instantiate the
ivOut with at least the ivIn so we have a properly constructed
Tools::Interval #16
2010-03-05 Howard Butler <[email protected]>
* HOWTORELEASE.txt: add doc describing how to release
2010-03-05 Howard Butler <[email protected]>
* : propsets to ignore test output:
2010-03-05 Howard Butler <[email protected]>
* include/Version.h: increment version info in preparation for
release
2010-03-05 Howard Butler <[email protected]>
* ChangeLog: update for release
2010-03-04 Howard Butler <[email protected]>
* include/capi/CountVisitor.h, include/capi/Makefile.am,
include/capi/sidx_api.h, include/capi/sidx_impl.h, makefile.vc,
src/capi/CountVisitor.cc, src/capi/Makefile.am,
src/capi/sidx_api.cc: add CountVisitor to the CAPI to provide a
cumulation of the number of hits that land within a query
2010-03-03 Howard Butler <[email protected]>
* include/capi/IdVisitor.h, include/capi/ObjVisitor.h,
include/capi/sidx_api.h, regressiontest/rtree/test3/run,
src/capi/LeafQuery.cc, src/capi/sidx_api.cc: use uint64_t for result
counts instead of uint32_t in C API
2009-12-29 Howard Butler <[email protected]>
* regressiontest/mvrtree/Exhaustive.cc,
regressiontest/rtree/Exhaustive.cc,
regressiontest/tprtree/Exhaustive.cc: fix up for gcc 4.4
2009-12-04 Marios Hadjieleftheriou <[email protected]>
* : - - spatialindex.suo 18 0 src/spatialindex/Region.cc
2009-11-05 Howard Butler <[email protected]>
* src/spatialindex/Region.cc: don't thrown an error when -DDEBUG is
on and we initialize an infinite Region
2009-11-03 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: pass in a reference for the query bounds
2009-11-03 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: try to do no harm when calling Index_Free on
something that's null
2009-11-03 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: pass in a reference for the query bounds
2009-11-03 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: copy the array using memcpy because we can't
free() something created with new
2009-11-03 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: put the data in a newly malloc'd array to
match our std::free call of Index_Delete
2009-11-02 Howard Butler <[email protected]>
* src/capi/LeafQuery.cc: make sure to delete our shape when we're
done
2009-11-02 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: get dimension from the Region, no need to
fetch from index properties
2009-11-02 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: make sure we clean up the bounds and region
2009-11-02 Howard Butler <[email protected]>
* regressiontest/mvrtree/Generator.cc,
regressiontest/rtree/Generator.cc,
regressiontest/tprtree/Generator.cc,
regressiontest/tprtree/TPRTreeLoad.cc,
regressiontest/tprtree/TPRTreeQuery.cc, src/capi/sidx_api.cc,
src/mvrtree/Index.cc, src/mvrtree/MVRTree.cc, src/mvrtree/Node.cc,
src/rtree/Index.cc, src/rtree/Node.cc, src/rtree/RTree.cc,
src/spatialindex/LineSegment.cc, src/spatialindex/MovingPoint.cc,
src/spatialindex/MovingRegion.cc, src/spatialindex/Point.cc,
src/spatialindex/Region.cc, src/spatialindex/TimePoint.cc,
src/spatialindex/TimeRegion.cc, src/tools/Tools.cc,
src/tprtree/Index.cc, src/tprtree/Node.cc, src/tprtree/TPRTree.cc:
only #include <limits> where needed, and not in the global Tools.h
file
2009-10-30 Howard Butler <[email protected]>
* include/tools/Tools.h, regressiontest/mvrtree/Exhaustive.cc,
regressiontest/mvrtree/Generator.cc,
regressiontest/rtree/Exhaustive.cc,
regressiontest/rtree/Generator.cc,
regressiontest/tprtree/Generator.cc, src/mvrtree/Node.cc,
src/rtree/BulkLoader.cc, src/rtree/Node.cc, src/rtree/RTree.cc,
src/spatialindex/LineSegment.cc, src/spatialindex/MovingPoint.cc,
src/spatialindex/MovingRegion.cc, src/spatialindex/Point.cc,
src/spatialindex/Region.cc,
src/storagemanager/RandomEvictionsBuffer.cc, src/tprtree/Node.cc:
remove <cmath> <limits> and <climits> from Tools.h and include them
seperately in each file that needs them
2009-10-30 Howard Butler <[email protected]>
* include/capi/sidx_api.h: define to denote we're C API
2009-10-30 Howard Butler <[email protected]>
* include/capi/sidx_config.h: add a newline
2009-10-22 Howard Butler <[email protected]>
* src/capi/sidx_api.cc: make sure we use new/delete instead of
new/free
2009-10-21 Howard Butler <[email protected]>
* include/LineSegment.h, include/Point.h, include/Region.h,
include/SpatialIndex.h, src/spatialindex/LineSegment.cc,
src/spatialindex/Point.cc, src/spatialindex/Region.cc: remove
namespace pollution of Tools:: into the globally include'd header
SpatialIndex.h
2009-10-20 Howard Butler <[email protected]>
* configure.ac, makefile.vc: bump versions in preparation for
release
2009-10-19 Howard Butler <[email protected]>
* include/capi/sidx_api.h: add SIDX_Version prototype
2009-10-19 Howard Butler <[email protected]>
* ltmain.sh: ltmain.sh doesn't belong in svn
2009-10-19 Howard Butler <[email protected]>
* include/capi/Makefile.in, src/capi/Makefile.in: Makefile.in's
don't belong in svn
2009-10-19 Howard Butler <[email protected]>
* makefile.vc: C API compilation fix
2009-10-19 Howard Butler <[email protected]>
* src/tools/Tools.cc: tmpname fixes so we compile on msvc2003
2009-10-19 Howard Butler <[email protected]>
* makefile.vc: don't define a variable to "" or cl will complain
2009-10-08 Howard Butler <[email protected]>
* src/rtree/BulkLoader.cc: bleaf and bindex switched around in
createLevel call
2009-09-17 Howard Butler <[email protected]>
* include/capi/LeafQuery.h, include/capi/sidx_api.h,
src/capi/LeafQuery.cc, src/capi/sidx_api.cc: more leaf querying code
2009-09-16 Howard Butler <[email protected]>
* include/capi/LeafQuery.h, include/capi/Makefile.am,
include/capi/Makefile.in, include/capi/sidx_impl.h,
src/capi/LeafQuery.cc, src/capi/Makefile.am, src/capi/Makefile.in,
src/capi/sidx_api.cc: add beginnings of leaf querying to C API
2009-09-16 Howard Butler <[email protected]>
* include/capi/Item.h, include/capi/ObjVisitor.h,
include/capi/sidx_config.h, include/capi/sidx_impl.h,
src/capi/Item.cc, src/capi/Makefile.am, src/capi/Makefile.in,
src/capi/ObjVisitor.cc, src/capi/sidx_api.cc: remove the duplicate
and unnecessary Item construct that was masking the already existing
IData interface
2009-08-31 Howard Butler <[email protected]>
* makefile.vc: support building the c api
2009-08-24 Howard Butler <[email protected]>
* regressiontest/mvrtree/Exhaustive.cc,
regressiontest/rtree/Exhaustive.cc,
regressiontest/tprtree/Exhaustive.cc: fix issue with uint32_t by
copying macros from Tools.h
2009-08-19 Howard Butler <[email protected]>
* Makefile.am: try to ensure -lstdc++ is linked
2009-08-19 Howard Butler <[email protected]>
* : ignores
2009-08-19 Howard Butler <[email protected]>
* : ignore propset
2009-08-18 Howard Butler <[email protected]>
* include/tools/Tools.h, src/tools/Tools.cc: locking for
Tools::PropertySet (commented out though because it doesn't work
2009-08-14 Howard Butler <[email protected]>
* src/tools/Tools.cc: comment out PropertySet locking for now
2009-08-14 Howard Butler <[email protected]>
* include/tools/Tools.h, src/mvrtree/MVRTree.cc,
src/mvrtree/MVRTree.h, src/rtree/RTree.cc, src/rtree/RTree.h,
src/tools/Tools.cc, src/tprtree/TPRTree.cc, src/tprtree/TPRTree.h:
use HAVE_PTHREAD_H for #ifdef, make Tools::PropertySet threadsafe
for read/write
2009-08-13 Marios Hadjieleftheriou <[email protected]>
* : - - spatialindex.suo 13 23 src/rtree/BulkLoader.cc 2 3
src/rtree/BulkLoader.h 1 1 src/rtree/RTree.cc
2009-08-13 Marios Hadjieleftheriou <[email protected]>
* include/LineSegment.h, include/MVRTree.h, include/MovingPoint.h,
include/MovingRegion.h, include/Point.h, include/RTree.h,
include/Region.h, include/SpatialIndex.h, include/TPRTree.h,
include/TimePoint.h, include/TimeRegion.h,
include/tools/PointerPool.h, include/tools/Tools.h,
regressiontest/rtree/RTreeBulkLoad.cc,
regressiontest/rtree/RTreeQuery.cc, regressiontest/rtree/test1/run,
regressiontest/rtree/test2/run, src/mvrtree/Index.cc,
src/mvrtree/Index.h, src/mvrtree/Leaf.cc, src/mvrtree/Leaf.h,
src/mvrtree/MVRTree.cc, src/mvrtree/MVRTree.h, src/mvrtree/Node.cc,
src/mvrtree/Node.h, src/mvrtree/PointerPoolNode.h,
src/mvrtree/Statistics.cc, src/mvrtree/Statistics.h,
src/rtree/BulkLoader.cc, src/rtree/BulkLoader.h,
src/rtree/Index.cc, src/rtree/Index.h, src/rtree/Leaf.cc,
src/rtree/Leaf.h, src/rtree/Node.cc, src/rtree/Node.h,
src/rtree/PointerPoolNode.h, src/rtree/RTree.cc, src/rtree/RTree.h,
src/rtree/Statistics.cc, src/rtree/Statistics.h,
src/spatialindex/LineSegment.cc, src/spatialindex/MovingPoint.cc,
src/spatialindex/MovingRegion.cc, src/spatialindex/Point.cc,
src/spatialindex/Region.cc, src/spatialindex/TimePoint.cc,
src/spatialindex/TimeRegion.cc, src/storagemanager/Buffer.cc,
src/storagemanager/Buffer.h,
src/storagemanager/DiskStorageManager.cc,
src/storagemanager/DiskStorageManager.h,
src/storagemanager/MemoryStorageManager.cc,
src/storagemanager/MemoryStorageManager.h,
src/storagemanager/RandomEvictionsBuffer.cc, src/tools/Tools.cc,
src/tprtree/Index.cc, src/tprtree/Index.h, src/tprtree/Leaf.cc,
src/tprtree/Leaf.h, src/tprtree/Node.cc, src/tprtree/Node.h,
src/tprtree/PointerPoolNode.h, src/tprtree/Statistics.cc,
src/tprtree/Statistics.h, src/tprtree/TPRTree.cc,
src/tprtree/TPRTree.h: 1. Replace size_t with uint32_t to fix 64/32 bit compatibility
issues 2. Fixed memory bug related to data array and bulk loading for
RTree.
2009-08-10 Howard Butler <[email protected]>
* include/SpatialIndex.h, include/tools/Tools.h: remove #define
interface, use class
2009-08-06 Howard Butler <[email protected]>
* makefile.vc: osgeo4w packaging
2009-08-05 Howard Butler <[email protected]>
* include/tools/Tools.h: don't redefine interface if it is already
defined (/me scowls at windows
2009-08-05 Howard Butler <[email protected]>
* src/rtree/BulkLoader.cc: comment out record deletion entirely
2009-08-05 Howard Butler <[email protected]>
* src/rtree/BulkLoader.cc: guard against invalid delete
2009-07-30 Howard Butler <[email protected]>
* Makefile.am, configure.ac: bump version to 1.4.0 in prep for
release, add a windows docs to the dist
2009-07-30 Howard Butler <[email protected]>
* src/storagemanager/DiskStorageManager.cc: Add a
CheckFilesExists(Tools::PropertySet&) method instead of the cheap
way we were checking for existence before. This takes into account
the file extensions and only returns true if both files exist
2009-07-30 Howard Butler <[email protected]>
* include/tools/Tools.h: move the warning about 4251 down into
_MSC_VER
2009-07-30 Howard Butler <[email protected]>
* ChangeLog, configure.ac: new changelog
2009-07-30 Howard Butler <[email protected]>
* makefile.vc: update for new layout. make sure to build dll
appropriately
2009-07-29 Howard Butler <[email protected]>
* include/tools/Tools.h: turn off warning 4251
2009-07-29 Howard Butler <[email protected]>
* include/Makefile.am, include/SpatialIndex.h, include/Version.h:
fix #15 and provide a way to determine the library version at
compile time
2009-07-29 Howard Butler <[email protected]>
* makefile.vc: add back makefile.vc
2009-07-22 Howard Butler <[email protected]>
* src/spatialindex/Region.cc: a note about the debugging lint that
is incorrect when the bounds are infinity
2009-07-22 Howard Butler <[email protected]>
* regressiontest/rtree/Exhaustive.cc: make sure to #include
<cstring> to satisfy gcc 4.3+
2009-07-22 Marios Hadjieleftheriou <[email protected]>
* : 2 2 regressiontest/rtree/RTreeBulkLoad.vcproj 2 2
regressiontest/rtree/RTreeExhaustive.vcproj 2 2
regressiontest/rtree/RTreeGenerator.vcproj 2 2
regressiontest/rtree/RTreeLoad.vcproj 2 2
regressiontest/rtree/RTreeQuery.vcproj 2 2
spatialindex-vc/spatialindex.vcproj - - spatialindex.suo
2009-07-21 Marios Hadjieleftheriou <[email protected]>
* : 2 6 src/tools/Tools.cc
2009-07-20 Howard Butler <[email protected]>
* src/tools/Tools.cc: make sure to update existing values in
setProperties instead of assuming it doesn't exist in the map
2009-07-20 Marios Hadjieleftheriou <[email protected]>
* : - - spatialindex.suo 5 2 src/mvrtree/MVRTree.cc 6 3
src/rtree/RTree.cc 5 2 src/tprtree/TPRTree.cc
2009-07-19 Marios Hadjieleftheriou <[email protected]>
* : 8 5 INSTALL.WIN
2009-07-19 Marios Hadjieleftheriou <[email protected]>
* : - - spatialindex.suo
2009-07-19 Marios Hadjieleftheriou <[email protected]>
* : 25 0 INSTALL.WIN 167 4 regressiontest/rtree/RTreeBulkLoad.vcproj
166 4 regressiontest/rtree/RTreeExhaustive.vcproj 169 4
regressiontest/rtree/RTreeGenerator.vcproj 167 4
regressiontest/rtree/RTreeLoad.vcproj 167 4
regressiontest/rtree/RTreeQuery.vcproj 1 1
regressiontest/rtree/test3/run 309 3
spatialindex-vc/spatialindex.vcproj 76 0 spatialindex.sln - -
spatialindex.suo create mode 100644 INSTALL.WIN create mode 100755 spatialindex.sln create mode 100755 spatialindex.suo
2009-07-18 Marios Hadjieleftheriou <[email protected]>
* : 0 65 spatialindex-vc/spatialindex.vcproj.RESEARCH.marioh.user delete mode 100755
spatialindex-vc/spatialindex.vcproj.RESEARCH.marioh.user
2009-07-15 Howard Butler <[email protected]>
* include/SpatialIndex.h, src/mvrtree/Node.cc, src/mvrtree/Node.h,
src/rtree/Node.cc, src/rtree/Node.h, src/rtree/RTree.cc,
src/rtree/RTree.h, src/tprtree/Node.cc, src/tprtree/Node.h: apply
Willem's patch for #14
2009-07-06 Howard Butler <[email protected]>
* src/rtree/RTree.cc: more descriptive and separate exception
descriptions for FillFactor inconsistencies
2009-07-06 Howard Butler <[email protected]>
* include/SpatialIndex.h, ltmain.sh: silence warnings about windows
compiler complaints on non-windows systems
2009-05-28 Howard Butler <[email protected]>
* makefile.vc: rename dlls to not have lib* in front of them
2009-05-28 Howard Butler <[email protected]>
* makefile.vc: A much improved windows makefile based in libLAS'
2009-05-28 Howard Butler <[email protected]>
* include/SpatialIndex.h: On MSVC, just about every class complains
about 4250, inheritance by dominance. We'll just shut that up for
now.
2009-05-14 Howard Butler <[email protected]>
* src/tools/TemporaryFile.cc: apply Patrick Mézard's patch for the
inverted use of mktemp on windows #13
2009-05-14 Howard Butler <[email protected]>
* src/tools/Tools.cc: Fix #12, add time.h so msvc9 works
2009-05-04 Howard Butler <[email protected]>
* regressiontest/mvrtree/Exhaustive.cc,
regressiontest/mvrtree/MVRTreeLoad.cc,
regressiontest/mvrtree/MVRTreeQuery.cc,
regressiontest/rtree/Exhaustive.cc,
regressiontest/rtree/RTreeLoad.cc,
regressiontest/rtree/RTreeQuery.cc,
regressiontest/tprtree/Generator.cc, src/mvrtree/MVRTree.cc,
src/mvrtree/Node.cc, src/rtree/BulkLoader.cc, src/rtree/Leaf.cc,
src/rtree/Node.cc, src/rtree/RTree.cc,
src/spatialindex/LineSegment.cc, src/spatialindex/MovingPoint.cc,
src/spatialindex/MovingRegion.cc, src/spatialindex/Point.cc,
src/spatialindex/Region.cc, src/spatialindex/TimePoint.cc,
src/spatialindex/TimeRegion.cc, src/storagemanager/Buffer.cc,
src/storagemanager/Buffer.h,
src/storagemanager/DiskStorageManager.cc,
src/storagemanager/MemoryStorageManager.cc,
src/storagemanager/MemoryStorageManager.h, src/tools/Tools.cc,
src/tprtree/Leaf.cc, src/tprtree/Node.cc, src/tprtree/TPRTree.cc:
apply the patch for #11 - cstring and limits includes so gcc 4.3+
works
2008-05-30 Marios Hadjieleftheriou <[email protected]>
* : 1 1 src/tools/Makefile.am 1 1 src/tools/Tools.cc
2008-05-23 Marios Hadjieleftheriou <[email protected]>
* : 1 1 configure.ac
2008-05-18 Marios Hadjieleftheriou <[email protected]>
* : 416 853 ltmain.sh
2008-04-30 Howard Butler <[email protected]>
* aclocal.m4: aclocal.m4 is autogenerated. removing
2008-04-30 Howard Butler <[email protected]>
* : set svn:ignore properties for autogenerated files and automake
cruft
2008-04-30 Howard Butler <[email protected]>
* include/tools/Makefile.am: add rand48.h to dist target
2008-04-29 Marios Hadjieleftheriou <[email protected]>
* : 0 11000 regressiontest/rtree/test1/data 0 100
regressiontest/rtree/test1/queries delete mode 100644
regressiontest/rtree/test1/data delete mode 100644
regressiontest/rtree/test1/queries
2008-04-29 Marios Hadjieleftheriou <[email protected]>
* : 16 0 include/tools/rand48.h create mode 100644 include/tools/rand48.h
2008-04-29 Marios Hadjieleftheriou <[email protected]>
* : 1 11 makefile.vc
2008-04-29 Marios Hadjieleftheriou <[email protected]>
* : 58 83 src/Makefile.in 59 70 src/mvrtree/Makefile.in 5 5
src/mvrtree/Node.cc 59 70 src/rtree/Makefile.in 5 5