forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
24724 lines (18501 loc) · 922 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-05-30 12:48 Sandro Santilli <[email protected]>
* [r3386] NEWS, configure.in: Set version to 3.3.0 (final) - Set
release date to 2011-05-30
2011-05-30 10:49 Mateusz Loskot <[email protected]>
* [r3385] capi/CMakeLists.txt: Applied William\'s patch
capi_CMakeLists.txt.patch for OSX framework (Ticket #385)
2011-05-30 10:45 Mateusz Loskot <[email protected]>
* [r3384] src/CMakeLists.txt: Applied William\'s patch *
src_CMakeLists.txt.patch Download added OSX framework (Ticket
#385)
2011-05-30 10:30 Mateusz Loskot <[email protected]>
* [r3383] src/CMakeLists.txt: Applied William\'s patch with missing
library versions for OSX framework (Ticket #385)
2011-05-30 09:41 Mateusz Loskot <[email protected]>
* [r3382] tests/bigtest/CMakeLists.txt, tests/unit/CMakeLists.txt,
tests/xmltester/CMakeLists.txt: Applied supplementary tests.patch
for 85 from William
2011-05-27 14:04 Sandro Santilli <[email protected]>
* [r3381] src/Makefile.am: The mac framework info.plist.in from
r3376 didn't make it into the rc2 tarball.
2011-05-23 10:04 Sandro Santilli <[email protected]>
* [r3378] ChangeLog: updated for 3.3.0rc2 release
2011-05-23 09:58 Sandro Santilli <[email protected]>
* [r3377] configure.in: Set version to 3.3.0rc2
2011-05-23 08:52 Mateusz Loskot <[email protected]>
* [r3376] src/info.plist.in: Added src/info.plist.in file for OS X
framework build option in CMake configuration (Ticket #385)
2011-05-22 23:34 Mateusz Loskot <[email protected]>
* [r3375] CMakeLists.txt, capi/CMakeLists.txt,
include/CMakeLists.txt, src/CMakeLists.txt, tools/CMakeLists.txt:
Added OS X framework build option to CMake configuration (Ticket
#385)
2011-05-20 08:02 Sandro Santilli <[email protected]>
* [r3374] tests/perf/capi/memleak_mp_prep.c: add missing return
from main
2011-05-19 20:39 Frank Warmerdam <[email protected]>
* [r3373] src/operation/overlay/PolygonBuilder.cpp: shellCount
checking should not be DEBUG only now that we throw an exception
(#398)
2011-05-19 19:32 Frank Warmerdam <[email protected]>
* [r3372] include/geos/noding/SegmentPointComparator.h,
src/Makefile.vc, src/noding/snapround/MCIndexSnapRounder.cpp,
src/operation/overlay/PolygonBuilder.cpp: Updates for Makefile.vc
builds and issues when building NDEBUG and no inlining
2011-05-19 14:58 Sandro Santilli <[email protected]>
* [r3371] tests/perf/capi/Makefile.am: Fix build of prepared geoms
memleak tester on system w/out geos installed
2011-05-18 19:59 Sandro Santilli <[email protected]>
* [r3370] include/geos/platform.h.in,
src/algorithm/RobustDeterminant.cpp: Do not assume isfinite is in
std:: namespace to fix #444; Have RobustDeterminant use a broad
'using namespace std' to fix #442 in another way.
2011-05-17 20:44 Sandro Santilli <[email protected]>
* [r3369] Makefile.am, capi/Makefile.am, include/Makefile.am,
include/geos/Makefile.am, src/Makefile.am, tests/Makefile.am,
tests/bigtest/Makefile.am, tests/unit/Makefile.am,
tests/xmltester/Makefile.am, tools/Makefile.am: Distribute cmake
build scripts. Fixes bug #441.
2011-05-17 17:04 Sandro Santilli <[email protected]>
* [r3368] include/geos/noding/snapround/MCIndexSnapRounder.h,
include/geos/noding/snapround/MCIndexSnapRounder.inl,
include/geos/noding/snapround/Makefile.am, src/inlines.cpp:
Remove inlines machinery from MCIndexSnapRounder. Possibly fixes
ticket #222.
2011-05-17 16:50 Sandro Santilli <[email protected]>
* [r3367] include/geos/geom/Coordinate.h,
include/geos/geom/Coordinate.inl, src/geom/Coordinate.cpp: Remove
disabled code and old logs. No functional change.
2011-05-16 14:17 Mateusz Loskot <[email protected]>
* [r3366] include/geos/geom/util/SineStarFactory.h: Fixed buggy
self-assignment in SineStarFactory::setNumArms
2011-05-16 11:46 Sandro Santilli <[email protected]>
* [r3365] include/geos/platform.h.in: Quality ::finite and
::isfinite symbols, when available, into the std:: namespace.
Fixes bug #442.
2011-05-13 16:22 Mateusz Loskot <[email protected]>
* [r3364] capi/CMakeLists.txt,
tests/unit/capi/GEOSIntersectsTest.cpp: GEOS DLL exports are
pretty much messed up. The same DLL declspec is used by both C++
and C DLLs. So, GEOS C DLL cannot import and link properly
against GEOS C++ interface as the declspec(dllexport) is
specified for the GEOS C++ DLL where declspec(dllimport) is
expected. This commit fixes the issue (temporarily) by linking
GEOS C DLL against GEOS C++ static library.
2011-05-13 16:17 Mateusz Loskot <[email protected]>
* [r3363] include/geos/algorithm/Angle.h: Added missing DLL decspec
for Angle class
2011-05-13 15:53 Mateusz Loskot <[email protected]>
* [r3362] src/algorithm/RobustDeterminant.cpp: Removed
std::isfinite as possibly non-existing on some platforms - rather
fix platform.h if needed.
2011-05-12 10:11 Sandro Santilli <[email protected]>
* [r3361] NEWS: Add note about #357 fix
2011-05-12 09:56 Sandro Santilli <[email protected]>
* [r3360] src/algorithm/RobustDeterminant.cpp,
tests/unit/capi/GEOSIntersectsTest.cpp: Have RobustDeterminant
throw an IllegalArgument if passed any infinite or nan value.
Fixes bug #357. Includes regress test.
2011-05-12 07:39 Sandro Santilli <[email protected]>
* [r3359] NEWS: Add note about the memory usage reduction in
prepared geoms (#342)
2011-05-12 07:21 Sandro Santilli <[email protected]>
* [r3358] src/noding/MCIndexSegmentSetMutualIntersector.cpp:
Reserve vector space, use ::size_type for vector indices.
2011-05-12 07:18 Sandro Santilli <[email protected]>
* [r3357] include/geos/noding/MCIndexSegmentSetMutualIntersector.h,
src/noding/MCIndexSegmentSetMutualIntersector.cpp: Don't let
MCIndexSegmentSetMutualIntersector grow in memory on every new
::process call. Fixes bug #342.
2011-05-12 07:14 Sandro Santilli <[email protected]>
* [r3356] include/geos/index/chain/MonotoneChainBuilder.h,
src/index/chain/MonotoneChainBuilder.cpp: Port info for
MonotoneChainBuilder
2011-05-12 06:20 Sandro Santilli <[email protected]>
* [r3355] src/geom/prep/PreparedLineStringIntersects.cpp: Fix a
memory leak in PreparedLineStringIntersects::isAnyPointInRing
2011-05-12 06:16 Sandro Santilli <[email protected]>
* [r3354] src/geom/prep/PreparedLineString.cpp: Drop commented out
code
2011-05-12 06:13 Sandro Santilli <[email protected]>
* [r3353] include/geos/geom/prep/PreparedLineStringIntersects.h,
src/geom/prep/PreparedLineStringIntersects.cpp: Port info for
PreparedLineStringIntersects, and avoid polluting the global
namespace
2011-05-12 06:10 Sandro Santilli <[email protected]>
* [r3352] include/geos/geom/prep/AbstractPreparedPolygonContains.h,
src/geom/prep/AbstractPreparedPolygonContains.cpp: Reduce heap
allocations in AbstractPreparedPolygonContains
2011-05-11 17:59 Sandro Santilli <[email protected]>
* [r3351] include/geos/noding/FastSegmentSetIntersectionFinder.h,
src/noding/FastSegmentSetIntersectionFinder.cpp: Port info for
FastSegmentSetIntersectionFinder
2011-05-11 17:59 Sandro Santilli <[email protected]>
* [r3350] include/geos/noding/MCIndexSegmentSetMutualIntersector.h,
src/noding/MCIndexSegmentSetMutualIntersector.cpp: Port info for
MCIndexSegmentSetMutualIntersector
2011-05-11 17:25 Sandro Santilli <[email protected]>
* [r3349] configure.in, tests/perf/Makefile.am, tests/perf/capi,
tests/perf/capi/Makefile.am, tests/perf/capi/memleak_mp_prep.c,
tests/perf/capi/memleak_mp_prep.sh: Import test for bug #342. It
is not automated as it's not general (requires bash)
2011-05-11 10:00 Sandro Santilli <[email protected]>
* [r3348] HOWTO_RELEASE: Producing a bzip2 tarball is easier than
described
2011-05-11 09:54 Sandro Santilli <[email protected]>
* [r3346] ChangeLog, NEWS: Updated for 3.0.0rc1 release
2011-05-11 09:48 Sandro Santilli <[email protected]>
* [r3345] php/geos.c, php/test/test.php: Add Geometry.offsetCurve
to PHP binding
2011-05-11 09:47 Sandro Santilli <[email protected]>
* [r3344] php/geos.c, php/test/test.php: Add single-sided buffering
support in PHP binding
2011-05-11 09:15 Sandro Santilli <[email protected]>
* [r3343] configure.in: Set version to 3.0.0rc1
2011-05-10 18:10 Sandro Santilli <[email protected]>
* [r3342] src/operation/buffer/BufferBuilder.cpp,
tests/unit/capi/GEOSOffsetCurveTest.cpp: Have GEOSOffsetCurve
return LINESTRING EMPTY for collapsing lines (right offset on
right-turning curve can do that). Regress test one such case,
taken from http://trac.osgeo.org/postgis/ticket/413.
2011-05-10 11:11 Sandro Santilli <[email protected]>
* [r3341] tests/unit/Makefile.am,
tests/unit/capi/GEOSIntersectsTest.cpp: Add test for 357 (doesn't
succeed at failing)
2011-05-10 09:51 Sandro Santilli <[email protected]>
* [r3340] include/geos/algorithm/LineIntersector.h,
include/geos/geomgraph/EdgeIntersection.h,
include/geos/geomgraph/EdgeIntersectionList.h,
src/algorithm/LineIntersector.cpp, src/geomgraph/Edge.cpp,
src/geomgraph/EdgeIntersectionList.cpp: Revert "Use long double
to compute edge distance." (r3334). Simple double in HCoordinate
made #350 pass anyway.
2011-05-10 09:51 Sandro Santilli <[email protected]>
* [r3339] src/algorithm/HCoordinate.cpp: Drop
STORE_INTERMEDIATE_COMPUTATION_VALUES macro and protected
non-unrolled computation, that is all paranoia aimed at making
floats stored to match java IEEE. Since we get no failures in
testsuite (our and postgis') I think it makes sense to have the
code as close as possible to the JTS one.
2011-05-10 09:50 Sandro Santilli <[email protected]>
* [r3338] include/geos/algorithm/HCoordinate.h,
src/algorithm/HCoordinate.cpp: Update port info
2011-05-10 09:50 Sandro Santilli <[email protected]>
* [r3337] tests/xmltester/tests/ticket/bug350.xml,
tests/xmltester/tests/ticket/bug398.xml: Expect the same results
given by JTS
2011-05-10 09:50 Sandro Santilli <[email protected]>
* [r3336] include/geos/algorithm/HCoordinate.h,
src/algorithm/HCoordinate.cpp: Bring hcoordinate back to double
precision (from long double)
2011-05-09 11:57 Sandro Santilli <[email protected]>
* [r3335] tests/xmltester/Makefile.am,
tests/xmltester/tests/ticket/bug350.xml: Automate test for
bug350, change the expected result to match the one obtained by
GEOS. It is not _exactly_ the same output obtained with JTS but
close enough. Unfortunately both GEOS and JTS use an exact match
for comparison so we won't be able to share this test.
2011-05-09 11:57 Sandro Santilli <[email protected]>
* [r3334] include/geos/algorithm/LineIntersector.h,
include/geos/geomgraph/EdgeIntersection.h,
include/geos/geomgraph/EdgeIntersectionList.h,
src/algorithm/LineIntersector.cpp, src/geomgraph/Edge.cpp,
src/geomgraph/EdgeIntersectionList.cpp: Use long double to
compute edge distance. Makes noding more robust, fixes bug #350.
2011-05-06 18:51 Sandro Santilli <[email protected]>
* [r3333] include/geos/geomgraph/EdgeIntersection.h,
src/geomgraph/EdgeIntersection.cpp, src/geomgraph/Makefile.am:
Turn EdgeIntersection into a concrete, fully-inlined, C++ class.
2011-05-06 18:51 Sandro Santilli <[email protected]>
* [r3332] include/geos/geomgraph/index/MonotoneChain.h: Describe
MonotoneChain
2011-05-06 18:51 Sandro Santilli <[email protected]>
* [r3331] src/geomgraph/Edge.cpp,
src/geomgraph/EdgeIntersection.cpp,
src/geomgraph/EdgeIntersectionList.cpp: Make output operators for
Edge, EdgeIntersection and EdgeIntersectionList closer to JTS,
for easier comparison
2011-05-06 18:51 Sandro Santilli <[email protected]>
* [r3330] include/geos/geomgraph/EdgeIntersection.h,
include/geos/geomgraph/EdgeIntersectionList.h,
src/geomgraph/EdgeIntersection.cpp,
src/geomgraph/EdgeIntersectionList.cpp: Output operator for
EdgeIntersection and EdgeIntersectionList
2011-05-06 18:51 Sandro Santilli <[email protected]>
* [r3329] include/geos/geomgraph/GeometryGraph.h,
src/geomgraph/GeometryGraph.cpp: Drop book keeping of segment
intersectors, as we're transferring their ownership to caller
anyway
2011-05-06 08:57 Sandro Santilli <[email protected]>
* [r3328] tests/xmltester/tests/ticket/bug350.xml: Re-add also the
original data in test for bug350, so nothing gets lost.
2011-05-06 08:57 Sandro Santilli <[email protected]>
* [r3327] src/geomgraph/GeometryGraph.cpp: Use logical (not
bitwise) AND, use dynamic_cast to map JTS's instanceof operator
2011-05-06 08:57 Sandro Santilli <[email protected]>
* [r3326] tests/xmltester/tests/ticket/bug350.xml: Modify test for
bug350 so to use pre-snapped geometries. Shows that the problem
is not in snapping code, but after that (ie: JTS succeeds at fist
shot on this new input)
2011-05-04 17:45 Sandro Santilli <[email protected]>
* [r3325] src/geom/prep/AbstractPreparedPolygonContains.cpp,
tests/unit/capi/GEOSPreparedGeometryTest.cpp: Fix regression
accidentally introduced by commit r3322 (Sean's). Add automated
test for it (was found trough PostGIS regression test)
2011-05-04 16:30 Sandro Santilli <[email protected]>
* [r3324] src/operation/buffer/OffsetCurveBuilder.cpp: Drop useless
and unavailable include
2011-05-03 02:30 Sean Gillies <[email protected]>
* [r3323] src/geom/prep/AbstractPreparedPolygonContains.cpp,
src/geom/prep/PreparedPolygon.cpp: Damn these tabs
2011-05-03 02:27 Sean Gillies <[email protected]>
* [r3322] capi/geos_c.cpp, capi/geos_c.h.in, capi/geos_ts_c.cpp,
src/geom/prep/AbstractPreparedPolygonContains.cpp,
src/geom/prep/PreparedPolygon.cpp: Add missing prepared geometry
predicates to C API (#436)
2011-04-28 16:39 Sandro Santilli <[email protected]>
* [r3321] .gitignore, NEWS,
include/geos/operation/predicate/RectangleIntersects.h,
include/geos/operation/predicate/SegmentIntersectionTester.h,
src/operation/predicate/RectangleIntersects.cpp,
src/operation/predicate/SegmentIntersectionTester.cpp: Improve
performance of RectangleIntersects (of one order of magnitude).
2011-04-28 16:38 Sandro Santilli <[email protected]>
* [r3320]
tests/perf/operation/predicate/RectangleIntersectsPerfTest.cpp:
More concise output from performance tester
2011-04-28 15:09 Sandro Santilli <[email protected]>
* [r3319] src/noding/ScaledNoder.cpp,
src/operation/buffer/BufferOp.cpp: Hush uncontrolled debugging
prints
2011-04-28 15:08 Sandro Santilli <[email protected]>
* [r3318] include/geos/operation/relate/RelateComputer.h,
src/operation/relate/RelateComputer.cpp: Plug leak on exception
in RelateComputer (exposed by running doc/example)
2011-04-28 15:08 Sandro Santilli <[email protected]>
* [r3317] src/geom/Geometry.cpp: Do not leak on exception during
relational geometry predicates
2011-04-28 14:16 Sandro Santilli <[email protected]>
* [r3316] configure.in, tests/perf/operation/Makefile.am,
tests/perf/operation/predicate,
tests/perf/operation/predicate/Makefile.am,
tests/perf/operation/predicate/RectangleIntersectsPerfTest.cpp:
Port RectangleIntersects performance test from JTS-1.12
2011-04-28 14:16 Sandro Santilli <[email protected]>
* [r3315] src/operation/predicate/RectangleIntersects.cpp: Do not
leak memory during rectangle intersects predicate
2011-04-28 14:16 Sandro Santilli <[email protected]>
* [r3314] src/operation/overlay/OverlayOp.cpp: Drop unneeded
include
2011-04-28 10:04 Sandro Santilli <[email protected]>
* [r3313] doc/example.cpp, include/geos/geom/util/Makefile.am,
include/geos/geom/util/SineStarFactory.h,
include/geos/util/GeometricShapeFactory.h,
src/geom/util/Makefile.am, src/geom/util/SineStarFactory.cpp,
src/util/GeometricShapeFactory.cpp: Port
geos::geom::util::SineStarFactory from JTS-1.12, useful for
profile-test RectangleIntersects.
2011-04-28 10:04 Sandro Santilli <[email protected]>
* [r3312] src/geomgraph/EdgeIntersectionList.cpp,
src/geomgraph/NodeMap.cpp, src/operation/valid/IsValidOp.cpp:
Trim old embedded history log (from CVS times)
2011-04-27 16:42 Sandro Santilli <[email protected]>
* [r3311] include/geos/algorithm/CGAlgorithms.h,
src/algorithm/CGAlgorithms.cpp, tests/unit/Makefile.am,
tests/unit/algorithm/CGAlgorithms/signedAreaTest.cpp: Improve
speed of Geometry.getArea, unit-test it.
2011-04-27 15:52 Sandro Santilli <[email protected]>
* [r3310] tools/findclassfiles: Match full class names, not
partial. Allow specifying a package name.
2011-04-27 15:47 Sandro Santilli <[email protected]>
* [r3309] include/geos/operation/linemerge/EdgeString.h,
include/geos/operation/linemerge/LineMergeDirectedEdge.h,
include/geos/operation/linemerge/LineMergeEdge.h,
include/geos/operation/linemerge/LineMergeGraph.h,
include/geos/operation/linemerge/LineMerger.h,
include/geos/operation/linemerge/LineSequencer.h,
src/operation/linemerge/EdgeString.cpp,
src/operation/linemerge/LineMergeDirectedEdge.cpp,
src/operation/linemerge/LineMergeEdge.cpp,
src/operation/linemerge/LineMergeGraph.cpp,
src/operation/linemerge/LineMerger.cpp,
src/operation/linemerge/LineSequencer.cpp: Sync linemerge package
to JTS-1.12 (nothing changed)
2011-04-27 15:33 Sandro Santilli <[email protected]>
* [r3308] tools/findclassfiles: Utility script to help with editing
all files of a class
2011-04-27 15:18 Sandro Santilli <[email protected]>
* [r3307] include/geos/algorithm/Angle.h, src/algorithm/Angle.cpp,
tests/unit/Makefile.am, tests/unit/algorithm/AngleTest.cpp: Sync
Angle class to JTS-1.12, port unit testing for it.
2011-04-27 14:13 Sandro Santilli <[email protected]>
* [r3306] include/geos/operation/buffer/OffsetCurveSetBuilder.h,
src/operation/buffer/OffsetCurveSetBuilder.cpp,
tests/unit/capi/GEOSBufferTest.cpp: Add test for singlesided
buffer (areal). Fix premature exit from OffsetCurveSetBuilder.
2011-04-27 13:38 Sandro Santilli <[email protected]>
* [r3305] capi/geos_c.cpp, capi/geos_c.h.in, capi/geos_ts_c.cpp,
tests/unit/capi/GEOSOffsetCurveTest.cpp: Drop one argument from
GEOSOffsetCurve. Tell right/left from width/distance sign (<0 for
right side)
2011-04-27 13:06 Sandro Santilli <[email protected]>
* [r3304] tests/unit/Makefile.am,
tests/unit/capi/GEOSBufferTest.cpp,
tests/unit/capi/GEOSOffsetCurveTest.cpp: Put OffsetCurveTest in
its own file (old singleside test + a couple more tests)
2011-04-27 13:06 Sandro Santilli <[email protected]>
* [r3303] NEWS, capi/geos_c.cpp, capi/geos_c.h.in,
capi/geos_ts_c.cpp: Add GEOSBufferParams type and
GEOSBufferWithParams function to have an extensible buffer
operation. Allows areal single sided buffer.
2011-04-27 11:13 Sandro Santilli <[email protected]>
* [r3302] NEWS, capi/geos_c.cpp, capi/geos_c.h.in,
capi/geos_ts_c.cpp: Add GEOSOffsetCurve C-API interface
deprecating GEOSSingleSidedBuffer
2011-04-27 09:42 Sandro Santilli <[email protected]>
* [r3301] include/geos/operation/buffer/BufferBuilder.h,
include/geos/operation/buffer/BufferSubgraph.h,
include/geos/operation/buffer/Makefile.am,
include/geos/operation/buffer/OffsetCurveBuilder.h,
include/geos/operation/buffer/OffsetCurveVertexList.h,
include/geos/operation/buffer/OffsetSegmentGenerator.h,
include/geos/operation/buffer/OffsetSegmentString.h,
src/operation/buffer/BufferBuilder.cpp,
src/operation/buffer/BufferSubgraph.cpp,
src/operation/buffer/Makefile.am,
src/operation/buffer/OffsetCurveBuilder.cpp,
src/operation/buffer/OffsetSegmentGenerator.cpp: Refactored
offset curve generation (from JTS-1.12)
2011-04-27 09:42 Sandro Santilli <[email protected]>
* [r3300] include/geos/operation/buffer/BufferParameters.h,
src/operation/buffer/BufferParameters.cpp: Sync BufferParameters
class to JTS r378 (isSingleSided property)
2011-04-27 09:42 Sandro Santilli <[email protected]>
* [r3299] include/geos/operation/buffer/BufferOp.h,
src/operation/buffer/BufferOp.cpp: Sync BufferOp class to JTS
r378. Do not port the unused isSingleSided property.
2011-04-23 10:30 Sandro Santilli <[email protected]>
* [r3298] NEWS: Add note about GEOSCascadedUnion deprecation
2011-04-23 10:28 Sandro Santilli <[email protected]>
* [r3297] capi/geos_c.h.in: Mark GEOSUnionCascaded as deprecated,
GEOSUnaryUnion does the same thing w/out refusin to deal with
lines, points, collections
2011-04-23 10:03 Sandro Santilli <[email protected]>
* [r3296] include/geos/operation/union/CascadedUnion.h,
include/geos/operation/union/Makefile.am, php/test/test.php,
src/operation/union/CascadedUnion.cpp,
src/operation/union/Makefile.am,
src/operation/union/UnaryUnionOp.cpp,
tests/unit/capi/GEOSUnaryUnionTest.cpp,
tests/xmltester/Makefile.am,
tests/xmltester/tests/ticket/bug392.xml: Generalize
CascadedPolygonUnion into a CascadedUnion. Use the generalized
class for unary union of lines, fixing bug #392. Automate testing
of it, tweak expected results from other tests (output components
reordered).
2011-04-22 22:26 Sandro Santilli <[email protected]>
* [r3295] tests/xmltester/XMLTester.cpp: Use equals() to compare
expected/obtained results of "Union" operation. This matches JTS
and prevents being too strict about equality.
2011-04-22 18:46 Sandro Santilli <[email protected]>
* [r3294] include/geos/operation/union/CascadedPolygonUnion.h,
include/geos/operation/union/GeometryListHolder.h,
include/geos/operation/union/Makefile.am: Put GeometryListHolder
in its own header file.
2011-04-22 13:51 Sandro Santilli <[email protected]>
* [r3293] include/geos/io/WKTWriter.h, src/io/WKTWriter.cpp,
tests/unit/io/WKTWriterTest.cpp: Use stringstream to format
strings rather than printf-like statements. Simplifies things a
lot.
2011-04-22 13:04 Sandro Santilli <[email protected]>
* [r3292] include/geos/geom/PrecisionModel.h,
include/geos/geom/PrecisionModel.inl,
src/geom/PrecisionModel.cpp, tests/unit/Makefile.am,
tests/unit/geom/PrecisionModelTest.cpp,
tests/unit/io/WKTReaderTest.cpp, tests/unit/io/WKTWriterTest.cpp:
Sync PrecisionModel to JTS-1.12, add unit testing, fix
getMaximumPrecisionDigit to behave as documented (JTS doesn't).
2011-04-20 17:13 Sandro Santilli <[email protected]>
* [r3291] include/geos/operation/buffer/OffsetCurveSetBuilder.h,
src/operation/buffer/OffsetCurveSetBuilder.cpp,
tests/xmltester/Makefile.am,
tests/xmltester/tests/ticket/bug434.xml: Sync
OffsetCurveSetBuilder::isErodedCompletely implementation to JTS,
fixing bug #434
2011-04-20 15:55 Sandro Santilli <[email protected]>
* [r3290] tests/xmltester/Makefile.am,
tests/xmltester/tests/bug176.xml,
tests/xmltester/tests/bug188.xml,
tests/xmltester/tests/bug244.xml,
tests/xmltester/tests/bug275.xml,
tests/xmltester/tests/bug344.xml,
tests/xmltester/tests/bug350.xml,
tests/xmltester/tests/bug356.xml,
tests/xmltester/tests/bug358.xml,
tests/xmltester/tests/bug360.xml,
tests/xmltester/tests/bug366.xml,
tests/xmltester/tests/bug398.xml, tests/xmltester/tests/ticket,
tests/xmltester/tests/ticket/bug176.xml,
tests/xmltester/tests/ticket/bug188.xml,
tests/xmltester/tests/ticket/bug244.xml,
tests/xmltester/tests/ticket/bug275.xml,
tests/xmltester/tests/ticket/bug344.xml,
tests/xmltester/tests/ticket/bug350.xml,
tests/xmltester/tests/ticket/bug356.xml,
tests/xmltester/tests/ticket/bug358.xml,
tests/xmltester/tests/ticket/bug360.xml,
tests/xmltester/tests/ticket/bug366.xml,
tests/xmltester/tests/ticket/bug398.xml: Move per-ticket
testcases under their own directory
2011-04-20 15:42 Sandro Santilli <[email protected]>
* [r3289] configure.in: Set JTS port version to 1.12
2011-04-19 07:57 Sandro Santilli <[email protected]>
* [r3288] tests/unit/algorithm/CGAlgorithms/isCCWTest.cpp: Add test
for IsCCW against the two almost-collapsed rings resulting by
GEOS or JTS during execution of the union described in ticket
#398. This is done after confirmation of same results in JTS (1
bit makes the difference between CCW and CW orientation).
2011-04-18 21:45 Sandro Santilli <[email protected]>
* [r3287] tests/unit/operation/distance/DistanceOpTest.cpp: Add the
actual ->distance() call to the test for bug #367
2011-04-18 21:28 Sandro Santilli <[email protected]>
* [r3286] src/operation/overlay/PolygonBuilder.cpp,
tests/xmltester/Makefile.am: Throw a TopologyException, rather
than aborting, when finding more than a shell in MinimalEdgeRing
list. Fixes bug #398. Enables automated test for it. Note that
JTS fails the test now, triggering the failed assertion.
2011-04-18 21:28 Sandro Santilli <[email protected]>
* [r3285] tests/xmltester/tests/bug398.xml: Expect a result
with/out the collapsed ring in the test for bug 398. Funny
enough, this makes JTS react by failing the assertion I was
tracking...
2011-04-18 21:01 Sandro Santilli <[email protected]>
* [r3284] src/operation/overlay/PolygonBuilder.cpp: Avoid more heap
allocations in PolygonBuilder
2011-04-18 15:08 Sandro Santilli <[email protected]>
* [r3283] include/geos/operation/overlay/PolygonBuilder.h,
src/operation/overlay/PolygonBuilder.cpp: Reduce heap allocations
in PolygonBuilder, rewrite some private interfaces to deal with
refs rather than pointers
2011-04-18 15:08 Sandro Santilli <[email protected]>
* [r3282] src/operation/overlay/PolygonBuilder.cpp: Use
PlanarGraph::linkResultDirectedEdges rather than rewriting it
inline
2011-04-18 15:08 Sandro Santilli <[email protected]>
* [r3281] include/geos/geomgraph/PlanarGraph.h,
src/geomgraph/PlanarGraph.cpp: Turn
PlanarGraph::linkResultDirectedEdges into a templated method
2011-04-13 11:52 Sandro Santilli <[email protected]>
* [r3280] tests/unit/geom/CoordinateArraySequenceTest.cpp: Add test
for bug #435
2011-04-13 11:32 Sandro Santilli <[email protected]>
* [r3279] php/Makefile.am: Fix path to CAPI includes for PHP
binding
2011-04-13 10:44 Sandro Santilli <[email protected]>
* [r3278] src/geom/CoordinateArraySequence.cpp: Drop coordinate
dimension cache after read-write filtering. Fixes ticket #435.
2011-04-13 08:26 Sandro Santilli <[email protected]>
* [r3277] .gitignore, Makefile.am, author.sh: Drop author.sh, add a
rule to create authors.git instead
2011-04-13 07:37 Sandro Santilli <[email protected]>
* [r3276] author.sh: Add script to be used with git-svn
--authors-prog
2011-03-26 14:02 Sandro Santilli <[email protected]>
* [r3275] include/geos/simplify/TaggedLineString.h,
src/index/chain/MonotoneChainBuilder.cpp,
src/simplify/DouglasPeuckerLineSimplifier.cpp,
src/simplify/TaggedLineString.cpp,
src/simplify/TaggedLineStringSimplifier.cpp: fix missing size_t
with gcc 4.6
2011-03-26 14:02 Sandro Santilli <[email protected]>
* [r3274] include/geos/index/chain/MonotoneChainBuilder.h,
include/geos/operation/valid/SimpleNestedRingTester.h,
src/index/bintree/Bintree.cpp, src/index/bintree/Node.cpp,
src/index/bintree/Root.cpp, src/index/strtree/AbstractNode.cpp:
fixed missing NULL with gcc 4.6
2011-03-26 14:02 Sandro Santilli <[email protected]>
* [r3273] include/geos/operation/overlay/OverlayNodeFactory.h: fix
uninitialized const caused by missing constructor
2011-03-24 17:54 Mateusz Loskot <[email protected]>
* [r3272] capi/CMakeLists.txt, include/CMakeLists.txt,
src/CMakeLists.txt: Added source_group properties to support
source browsers in various IDEs
2011-03-16 22:29 Sandro Santilli <[email protected]>
* [r3271] capi/geos_ts_c.cpp: Use GEOSVALID flag correctly, thanks
Mat for spotting this.
2011-03-11 14:40 Sandro Santilli <[email protected]>
* [r3270] tests/xmltester/tests/bug350.xml: Add XML test for bug
#350
2011-03-11 14:24 Sandro Santilli <[email protected]>
* [r3269] tests/xmltester/tests/bug398.xml: Add XML test for bug398
(not automatically run, as it fails)
2011-03-11 14:24 Sandro Santilli <[email protected]>
* [r3268] tests/xmltester/XMLTester.cpp: Tell more about XML
loading failures
2011-03-08 09:04 Sandro Santilli <[email protected]>
* [r3267] tests/unit/capi/GEOSRelateBoundaryNodeRuleTest.cpp: Add
test for invalid boundary node rule value
2011-03-04 17:05 Sandro Santilli <[email protected]>
* [r3266] php/geos.c, php/test/test.php: PHP: add
relateBoundaryNodeRule method to GEOSGeometry object
2011-03-04 16:38 Sandro Santilli <[email protected]>
* [r3265] NEWS: Add note aboute GEOSRelateBoundaryNodeRule
2011-03-04 16:31 Sandro Santilli <[email protected]>
* [r3264] tests/unit/Makefile.am,
tests/unit/capi/GEOSRelateBoundaryNodeRuleTest.cpp:
GEOSRelateBoundaryNodeRule test, ticket #399 [RT-SIGTA]
2011-03-04 16:30 Sandro Santilli <[email protected]>
* [r3263] capi/geos_c.cpp, capi/geos_c.h.in, capi/geos_ts_c.cpp:
GEOSRelateBoundaryNodeRule, ticket #399 [RT-SIGTA]
2011-03-04 16:30 Sandro Santilli <[email protected]>
* [r3262] include/geos/algorithm/BoundaryNodeRule.h: Indenting..
2011-03-02 13:45 Sandro Santilli <[email protected]>
* [r3261] NEWS, tests/unit/operation/distance/DistanceOpTest.cpp:
Tweak unit test to expect distance 0 between an empty an anything
else. Report the change in NEWS file.
2011-03-02 13:45 Sandro Santilli <[email protected]>
* [r3260] tests/xmltester/Makefile.am,
tests/xmltester/XMLTester.cpp,
tests/xmltester/tests/general/TestDistance.xml: Add support for
"distance" op in XMLTester, and import JTS TestDistance.xml
2011-03-02 13:45 Sandro Santilli <[email protected]>
* [r3259] include/geos/operation/distance/DistanceOp.h,
src/operation/distance/DistanceOp.cpp: Fixed Geometry.distance()
and DistanceOp to return 0.0 for empty inputs (JTS-1.11)
2011-03-02 13:13 Sandro Santilli <[email protected]>
* [r3258] include/geos/operation/valid/IsValidOp.h,
src/operation/valid/IsValidOp.cpp,
tests/xmltester/tests/general/TestValid.xml: Sync IsValidOp and
related XML testcase to JTS-1.12
2011-03-02 12:46 Sandro Santilli <[email protected]>
* [r3257] NEWS, include/geos/geom/LineSegment.h,
include/geos/geom/LineSegment.inl,
include/geos/util/IllegalStateException.h,
include/geos/util/Makefile.am, src/geom/LineSegment.cpp: Added
check for illegal state in offsetPoint method
2011-03-02 09:24 Sandro Santilli <[email protected]>
* [r3256] src/geomgraph/Edge.cpp: Fix debug build
2011-03-01 17:56 Mateusz Loskot <[email protected]>
* [r3255] include/geos/algorithm/BoundaryNodeRule.h,
include/geos/algorithm/CentralEndpointIntersector.h,
include/geos/algorithm/ConvexHull.h,
include/geos/algorithm/distance/DiscreteHausdorffDistance.h,
include/geos/geom/Coordinate.h, include/geos/geom/Coordinate.inl,
include/geos/geom/CoordinateArraySequence.h,
include/geos/geom/CoordinateList.h,
include/geos/geom/CoordinateSequence.h,
include/geos/geom/CoordinateSequenceFilter.h,
include/geos/geom/Envelope.h, include/geos/geom/Geometry.h,
include/geos/geom/GeometryList.h,
include/geos/geom/IntersectionMatrix.h,
include/geos/geom/prep/PreparedGeometry.h,
include/geos/geom/prep/PreparedGeometryFactory.h,
include/geos/geom/util/GeometryExtracter.h,
include/geos/geomgraph/Edge.h,
include/geos/geomgraph/EdgeIntersectionList.h,
include/geos/geomgraph/EdgeNodingValidator.h,
include/geos/geomgraph/EdgeRing.h,
include/geos/geomgraph/GeometryGraph.h,
include/geos/geomgraph/TopologyLocation.h,
include/geos/geomgraph/index/MonotoneChainEdge.h,
include/geos/geomgraph/index/SegmentIntersector.h,
include/geos/geomgraph/index/SimpleMCSweepLineIntersector.h,
include/geos/geomgraph/index/SimpleSweepLineIntersector.h,
include/geos/index/bintree/Bintree.h,
include/geos/index/quadtree/Node.h,
include/geos/index/quadtree/NodeBase.h,
include/geos/index/quadtree/Quadtree.h,
include/geos/index/strtree/AbstractSTRtree.h,
include/geos/index/strtree/STRtree.h,
include/geos/index/sweepline/SweepLineIndex.h,
include/geos/io/StringTokenizer.h, include/geos/io/Writer.h,
include/geos/linearref/LengthIndexedLine.h,
include/geos/noding/BasicSegmentString.h,
include/geos/noding/MCIndexNoder.h,
include/geos/noding/NodableSegmentString.h,
include/geos/noding/NodedSegmentString.h,
include/geos/noding/ScaledNoder.h,
include/geos/noding/SegmentNodeList.h,
include/geos/noding/SegmentPointComparator.h,
include/geos/noding/SegmentString.h,
include/geos/noding/snapround/HotPixel.h,
include/geos/noding/snapround/MCIndexSnapRounder.h,
include/geos/operation/IsSimpleOp.h,
include/geos/operation/buffer/BufferParameters.h,
include/geos/operation/buffer/BufferSubgraph.h,
include/geos/operation/buffer/OffsetCurveSetBuilder.h,
include/geos/operation/distance/DistanceOp.h,
include/geos/operation/linemerge/EdgeString.h,
include/geos/operation/linemerge/LineSequencer.h,
include/geos/operation/overlay/ElevationMatrix.h,
include/geos/operation/overlay/ElevationMatrixCell.h,
include/geos/operation/overlay/LineBuilder.h,
include/geos/operation/overlay/PolygonBuilder.h,
include/geos/operation/overlay/snap/SnapOverlayOp.h,
include/geos/operation/overlay/validate/FuzzyPointLocator.h,
include/geos/operation/overlay/validate/OffsetPointGenerator.h,
include/geos/operation/overlay/validate/OverlayResultValidator.h,
include/geos/operation/polygonize/EdgeRing.h,
include/geos/operation/polygonize/PolygonizeGraph.h,
include/geos/operation/polygonize/Polygonizer.h,
include/geos/operation/relate/RelateComputer.h,
include/geos/operation/union/UnaryUnionOp.h,
include/geos/operation/valid/ConnectedInteriorTester.h,
include/geos/operation/valid/QuadtreeNestedRingTester.h,
include/geos/operation/valid/SimpleNestedRingTester.h,
include/geos/operation/valid/SweeplineNestedRingTester.h,
include/geos/planargraph/DirectedEdgeStar.h,
include/geos/planargraph/Edge.h,
include/geos/planargraph/Subgraph.h,
include/geos/precision/CommonBitsOp.h, include/geos/profiler.h,
include/geos/simplify/DouglasPeuckerLineSimplifier.h,
include/geos/simplify/TaggedLineString.h,
include/geos/util/UnsupportedOperationException.h,
src/geom/Coordinate.cpp,
src/operation/buffer/BufferParameters.cpp,
tests/unit/capi/GEOSSharedPathsTest.cpp,
tests/unit/capi/GEOSisValidDetailTest.cpp,
tests/unit/geom/GeometryFactoryTest.cpp,
tests/unit/io/ByteOrderValuesTest.cpp,
tests/unit/io/WKBWriterTest.cpp: Fix DLL build using Visual C++:
*) added missing exports; *) do not use static data members in
inline methods - linker fails to find definition ; *) Clean up
C4251 warning.
2011-03-01 17:53 Mateusz Loskot <[email protected]>
* [r3254] src/operation/valid/IsValidOp.cpp: Check geometry against
nullptr
2011-03-01 17:50 Mateusz Loskot <[email protected]>
* [r3253] include/geos/io/ByteOrderValues.h,
src/io/ByteOrderValues.cpp: Redefined ENDIAN_BIG and
ENDIAN_LITTLE as enumerators instead of static non-const members
- Visual C++ linker has mysterious problems with exporting them
from DLL.
2011-02-28 14:36 Sandro Santilli <[email protected]>
* [r3252] src/operation/buffer/BufferOp.cpp,
tests/xmltester/Makefile.am: Fix BufferOp::bufferFixedPrecision
to use snap-rounding noder. Fixes bug #356.
2011-02-28 12:19 Sandro Santilli <[email protected]>
* [r3251] src/operation/buffer/BufferBuilder.cpp: Cleanup debugging
output. Previous version didn't really print the _noded_ output
at all.
2011-02-28 11:43 Sandro Santilli <[email protected]>
* [r3250] NEWS, php/geos.c, php/test/test.php: Expose and test
covers/coveredBy to PHP binding
2011-02-28 11:32 Sandro Santilli <[email protected]>
* [r3249] capi/geos_c.cpp, capi/geos_c.h.in, capi/geos_ts_c.cpp:
GEOSCovers and GEOSCoveredBy (ticket #396) by Alessandro Furieri
2011-02-25 16:05 Sandro Santilli <[email protected]>
* [r3248] tests/xmltester/tests/bug356.xml: be explicit about
quadrant segments
2011-02-25 10:22 Sandro Santilli <[email protected]>
* [r3247] tests/xmltester/tests/bug356.xml: Add test for ticket
#356 (not run, as it fails)
2011-02-23 17:13 Sandro Santilli <[email protected]>
* [r3246] src/operation/buffer/BufferInputLineSimplifier.cpp,
src/operation/buffer/BufferInputLineSimplifier.h: JTS-1.12 sync
2011-02-23 16:46 Sandro Santilli <[email protected]>
* [r3245] include/geos/operation/buffer/BufferBuilder.h,
include/geos/operation/buffer/BufferOp.h,
include/geos/operation/buffer/BufferParameters.h,
include/geos/operation/buffer/BufferSubgraph.h,
include/geos/operation/buffer/OffsetCurveBuilder.h,
include/geos/operation/buffer/OffsetCurveVertexList.h,
include/geos/operation/buffer/RightmostEdgeFinder.h,
include/geos/operation/buffer/SubgraphDepthLocater.h,
src/operation/buffer/BufferBuilder.cpp,
src/operation/buffer/BufferOp.cpp,
src/operation/buffer/BufferParameters.cpp,
src/operation/buffer/BufferSubgraph.cpp,
src/operation/buffer/RightmostEdgeFinder.cpp,
src/operation/buffer/SubgraphDepthLocater.cpp: Update port info
2011-02-23 16:21 Sandro Santilli <[email protected]>
* [r3244] include/geos/operation/buffer/OffsetCurveBuilder.h,
include/geos/operation/buffer/OffsetCurveSetBuilder.h,
src/operation/buffer/OffsetCurveBuilder.cpp,
src/operation/buffer/OffsetCurveSetBuilder.cpp: Update port info
2011-02-23 16:21 Sandro Santilli <[email protected]>
* [r3243] NEWS, src/operation/buffer/OffsetCurveSetBuilder.cpp,
tests/xmltester/tests/general/TestBuffer.xml: Fixed buffer
OffsetCurveSetBuilder to handle "flat" rings correctly