forked from cran/rgeos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
2764 lines (1680 loc) · 70.9 KB
/
ChangeLog
File metadata and controls
2764 lines (1680 loc) · 70.9 KB
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
2016-04-04 11:35 rsbivand
* DESCRIPTION, src/Makevars.win: update to win-4.9.3
2016-02-15 07:38 rsbivand
* DESCRIPTION, R/rgeos_buffer.R: gBuffer NULL case
2016-02-13 11:26 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2016-02-12 20:31 rsbivand
* DESCRIPTION, R/rgeos_buffer.R: buffer byid to FALSE if single
feature
2016-02-12 18:58 rsbivand
* R/rgeos_buffer.R: buffer byid to FALSE if single feature
2016-02-09 12:53 rsbivand
* ChangeLog, inst/ChangeLog: buffer byid to FALSE if single feature
2016-02-09 12:52 rsbivand
* DESCRIPTION, R/rgeos_buffer.R, configure, src/rgeos_buffer.c:
buffer byid to FALSE if single feature
2016-01-23 19:12 rsbivand
* DESCRIPTION, R/rgeos_misc.R: rev 66 oddity partial workaround
2015-11-04 12:46 rsbivand
* configure: tidy
2015-11-04 12:43 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-11-04 11:10 rsbivand
* DESCRIPTION, src/rgeos_buffer.c: rgeos_buffer id overrun bug fix
2015-10-26 14:28 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-10-25 10:38 rsbivand
* man/topo-bin-gIntersection.Rd: fix td bug
2015-10-25 10:28 rsbivand
* ChangeLog, DESCRIPTION, inst/ChangeLog,
man/topo-bin-gIntersection.Rd, src/rgeos_topology_binary.c: fix
td bug
2015-09-29 07:07 rsbivand
* man/topo-bin-gIntersection.Rd: extra intersection example
2015-09-28 15:51 rsbivand
* ChangeLog, configure,
inst/tests/testxml/general/TestFunctionLLPrec.xml,
inst/tests/testxml/validate/TestRelateLL.xml,
inst/tests/testxml/validate/TestRelatePA.xml,
inst/tests/testxml/validate/TestRelatePL.xml,
inst/tests/testxml/validate/TestRelatePP.xml: tidy
2015-09-28 09:49 rsbivand
* src/rgeos_geos2R.c: SpatialRings stack unbalance
2015-09-26 17:45 rsbivand
* man/labelpt.Rd, man/pred-binary-gContains.Rd,
man/pred-binary-gCrosses.Rd, man/pred-binary-gEquals.Rd,
man/pred-binary-gIntersects.Rd, man/pred-binary-gRelate.Rd,
man/pred-binary-gTouches.Rd, man/topo-bin-gDifference.Rd,
man/topo-bin-gIntersection.Rd, man/topo-bin-gSymdifference.Rd,
man/topo-bin-gUnion.Rd: tidy
2015-09-26 17:27 rsbivand
* DESCRIPTION: adding unaryUnion to topo-bin if FALSE byid
2015-09-26 17:27 rsbivand
* R/rgeos_topology_binary.R, man/topo-bin-gDifference.Rd,
man/topo-bin-gIntersection.Rd, man/topo-bin-gSymdifference.Rd,
man/topo-bin-gUnion.Rd, src/rgeos_topology_binary.c: adding
unaryUnion to topo-bin if FALSE byid
2015-09-20 21:23 rsbivand
* man/pred-binary-gContains.Rd, man/pred-binary-gCrosses.Rd,
man/pred-binary-gEquals.Rd, man/pred-binary-gIntersects.Rd,
man/pred-binary-gRelate.Rd, man/pred-binary-gTouches.Rd,
man/topo-bin-gDifference.Rd, man/topo-bin-gIntersection.Rd,
man/topo-bin-gSymdifference.Rd, man/topo-bin-gUnion.Rd: note on
0-based indices
2015-09-18 12:13 rsbivand
* R/rgeos_predicate_binary.R, R/rgeos_topology_binary.R: add
optional validity checking to binary predicates and operations
2015-09-18 12:09 rsbivand
* DESCRIPTION, R/rgeos_predicate_binary.R,
R/rgeos_topology_binary.R, man/misc-over.Rd,
man/pred-binary-gContains.Rd, man/pred-binary-gCrosses.Rd,
man/pred-binary-gEquals.Rd, man/pred-binary-gIntersects.Rd,
man/pred-binary-gRelate.Rd, man/pred-binary-gTouches.Rd,
man/topo-bin-gDifference.Rd, man/topo-bin-gIntersection.Rd,
man/topo-bin-gSymdifference.Rd, man/topo-bin-gUnion.Rd: add
optional validity checking to binary predicates and operations
2015-09-10 14:06 edzer
* DESCRIPTION, R/over.R: version bump; let overGeomGeomDF absorb &
pass on minDimension to overGeomGeom
2015-09-01 10:27 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-08-31 19:59 edzer
* R/over.R: pass on colnames(x) if x is matrix
2015-08-31 16:49 edzer
* R/over.R: pass names on to returned list
2015-08-31 16:13 edzer
* R/over.R, man/misc-over.Rd: complete documentation, clean up
code.
2015-08-31 11:49 rsbivand
* configure, configure.ac: strip dev from version
2015-08-25 11:48 rsbivand
* DESCRIPTION, man/pred-binary-gContains.Rd,
man/pred-binary-gCrosses.Rd, man/pred-binary-gEquals.Rd,
man/pred-binary-gIntersects.Rd, man/pred-binary-gTouches.Rd,
src/rgeos_predicate_binary.c: block assigning too large matrix
2015-08-25 09:15 edzer
* R/over.R: default to gIntersects(), because of the performance
penalty
2015-08-22 13:33 edzer
* R/over.R: move constant check outside loop
2015-08-21 22:13 edzer
* R/over.R: increase over sanity
2015-08-21 15:03 edzer
* R/over.R: catch omission on unrealistic dimension requirements
2015-08-20 20:45 edzer
* R/over.R: clean up over stuff, order by dimension from gRelate
2015-08-20 09:23 edzer
* R/over.R: some more tweeks for SpatialMultiPoints
2015-08-19 14:52 edzer
* man/misc-over.Rd: add overGeomGeom doc
2015-08-19 14:11 edzer
* NAMESPACE: export overGeomGeomDF and overGeomGeom
2015-08-13 09:22 edzer
* src/rgeos_R2geos.c: clean up
2015-06-28 20:36 rsbivand
* DESCRIPTION, NAMESPACE, R/AAA.R, man/pred-binary-gRelate.Rd: CRAN
_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_=true NAMESPACE tidy
2015-06-23 07:56 rsbivand
* R/AAA.R: add utils:: to packageVersion()
2015-06-05 07:54 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-06-05 07:53 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-06-05 07:52 rsbivand
* DESCRIPTION: tidy
2015-05-29 13:49 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-05-29 13:47 rsbivand
* DESCRIPTION: tidy
2015-05-05 17:02 rsbivand
* DESCRIPTION, man/comment-functions.Rd,
man/experimental-functions.Rd, man/labelpt.Rd,
man/topo-bin-gIntersection.Rd, man/topo-bin-gUnion.Rd,
man/topo-unary-gDelaunayTriangulation.Rd: dontrun require issues
2015-04-23 22:19 edzer
* man/topo-bin-gIntersection.Rd: typo
2015-04-23 21:45 edzer
* src/rgeos_validate.c: add const declarations for SEXPs
2015-04-23 21:43 edzer
* R/over.R: fix bug for SpatialPolygons,SpatialPolygonsDataFrame
2015-04-13 15:59 rsbivand
* .Rbuildignore, R/labelpt.R, configure.ac, svn2cl.xsl: fix
polygonsLabel
2015-04-09 13:59 rsbivand
* DESCRIPTION, R/AAA.R, src/init.c, src/rgeos.c, src/rgeos.h: add
linking to version
2015-03-11 13:09 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-03-11 13:08 rsbivand
* R/labelpt.R, man/pred-unary-gIsSimple.Rd,
man/pred-unary-gIsValid.Rd: tidy
2015-03-11 12:48 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-03-10 08:30 rsbivand
* inst/README, inst/README.windows: OSX install note
2015-03-09 07:37 edzer
* NAMESPACE, man/class-SpatialCollections.Rd: exportClass
Spatial*NULL classes
2015-03-08 16:04 rsbivand
* src/rgeos_coord.c, src/rgeos_geos2R.c, src/rgeos_poly2nb.c,
src/rgeos_predicate_binary.c, src/rgeos_topology.c,
src/rgeos_topology_binary.c: added extra geos-config checks
2015-03-08 12:35 rsbivand
* DESCRIPTION: added extra geos-config checks
2015-03-08 12:34 rsbivand
* configure, configure.ac: added extra geos-config checks
2015-03-07 17:30 rsbivand
* configure, configure.ac: added extra geos-config checks
2015-01-29 08:19 edzer
* R/over.R, man/pred-binary-gIntersects.Rd: improve readability
overGeomGeom
2015-01-28 22:58 edzer
* R/over.R: fix overGeomGeom for length(x) == 1
2014-09-21 14:09 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-09-21 14:09 rsbivand
* DESCRIPTION, R/rgeos_topology_binary.R,
man/topo-bin-gIntersection.Rd: deprecate drop_not_poly
2014-09-21 11:19 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-09-21 11:18 rsbivand
* DESCRIPTION, NAMESPACE, R/AAA.R, man/topo-bin-gIntersection.Rd,
man/utility-functions.Rd, src/rgeos_geos2R.c: conditionally drop
slivers
2014-09-20 18:50 rsbivand
* inst/test_cases, inst/test_cases/polys.RData: drop topological
dimension
2014-09-20 18:35 rsbivand
* src/rgeos_geos2R.c: drop topological dimension
2014-09-19 20:17 rsbivand
* R/Rgpc_funcs.R, R/rgeos_misc.R, R/rgeos_topology_binary.R,
man/topo-bin-gDifference.Rd, man/topo-bin-gIntersection.Rd,
man/topo-bin-gSymdifference.Rd, man/topo-bin-gUnion.Rd,
src/rgeos_topology_binary.c: drop topological dimension
2014-09-11 13:08 rsbivand
* src/rgeos_geos2R.c: slivers
2014-09-06 22:07 rsbivand
* R/AAA.R, src/rgeos_geos2R.c: drop_not_poly adjustment
2014-09-04 18:30 rsbivand
* DESCRIPTION, R/AAA.R, R/rgeos_topology_binary.R,
src/rgeos_topology_binary.c: drop_not_poly adjustment
2014-07-08 08:53 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-07-07 22:26 rsbivand
* DESCRIPTION, R/Rgpc_funcs.R: constrain gpc to polygons
2014-06-05 19:08 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-06-05 19:01 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-06-05 18:59 rsbivand
* man/pred-binary-gContains.Rd, man/pred-binary-gIntersects.Rd,
src/rgeos_poly2nb.c: tidt
2014-06-05 18:33 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-06-05 18:32 rsbivand
* DESCRIPTION, R/AAA.R, R/rgeos_predicate_binary.R,
src/rgeos_poly2nb.c, src/rgeos_predicate_binary.c: tidy
2014-03-31 19:58 rsbivand
* src/rgeos_predicate_binary.c: permit binary predicates to return
lists
2014-03-31 19:46 rsbivand
* src/rgeos_predicate_binary.c: permit binary predicates to return
lists
2014-03-31 17:15 rsbivand
* DESCRIPTION, R/AAA.R, R/rgeos_predicate_binary.R, R/rgeos_util.R,
man/experimental-functions.Rd, man/pred-binary-gContains.Rd,
man/pred-binary-gCrosses.Rd, man/pred-binary-gEquals.Rd,
man/pred-binary-gIntersects.Rd, man/pred-binary-gTouches.Rd,
src/rgeos_R2geos.c, src/rgeos_poly2nb.c,
src/rgeos_predicate_binary.c: permit binary predicates to return
lists
2014-03-25 14:00 rsbivand
* configure: tidy
2014-03-25 13:55 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-03-23 09:22 rsbivand
* DESCRIPTION, NAMESPACE, R/Rgpc_funcs.R, R/rgeos_topology.R,
inst/wkts/sppsp.wkt, man/topo-unary-gDelaunayTriangulation.Rd,
man/topo-unary-gNode.Rd, man/topo-unary-gPolygonize.Rd,
src/init.c, src/rgeos.h, src/rgeos_topology.c: exposing noding
2014-02-13 15:30 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-02-13 15:28 rsbivand
* src/rgeos_topology_binary.c: cast to remove warnings
2014-02-13 08:52 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-02-13 08:51 rsbivand
* DESCRIPTION, src/rgeos_coord.c, src/rgeos_geos2R.c: changed
PROTECT code for crdMAT
2014-02-08 15:50 rsbivand
* DESCRIPTION, R/AAA.R, R/rgeos_topology_binary.R,
man/topo-bin-gDifference.Rd, man/topo-bin-gIntersection.Rd,
man/topo-bin-gSymdifference.Rd, man/topo-bin-gUnion.Rd,
src/rgeos_topology_binary.c: drop not poly intersections if both
poly
2014-01-27 19:35 rsbivand
* src/rgeos_geos2R.c: added id report on GC in GC
2014-01-27 19:06 rsbivand
* src/rgeos_geos2R.c, src/rgeos_topology_binary.c: added id report
on GC in GC
2014-01-22 12:13 rsbivand
* src/rgeos_predicate_binary.c: fix over-generous symmetry in binar
predicates
2014-01-22 12:09 rsbivand
* DESCRIPTION, src/rgeos.h, src/rgeos_predicate_binary.c: fix
over-generous symmetry in binar predicates
2013-12-06 23:34 crundel
* R/rgeos_predicate_binary.R: Fix for an edge case of predicates
with multipoint geometries
There is an issue if some points share in a SpatialPoints object
share an ID since there will be a mismatch between the number of
output IDs
2013-10-06 13:29 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-10-06 13:28 rsbivand
* R/rgeos_buffer.R, man/misc-gBuffer.Rd: blocking EMPTY
2013-10-05 14:46 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-10-05 14:35 rsbivand
* inst/tests/test-translate-empty.R,
inst/tests/testxml/general/TestBoundary.xml,
inst/tests/testxml/general/TestFunctionLA.xml,
inst/tests/testxml/general/TestFunctionLL.xml,
inst/tests/testxml/general/TestFunctionPP.xml,
inst/tests/testxml/general/TestSimple.xml,
inst/tests/testxml/general/TestValid.xml,
inst/tests/testxml/general/TestValid2.xml,
inst/tests/testxml/robust/ExternalRobustness.xml,
man/misc-gBuffer.Rd, man/pred-unary-gIsEmpty.Rd,
man/wkt-functions.Rd, src/rgeos_geos2R.c: blocking EMPTY
2013-10-04 19:04 rsbivand
* R/rgeos_buffer.R, man/misc-gBuffer.Rd, src/rgeos_buffer.c: adding
buffer widths either 1 or n
2013-10-04 12:08 rsbivand
* DESCRIPTION: removing empty polygons
2013-10-04 12:05 rsbivand
* DESCRIPTION, R/rgeos_buffer.R, src/rgeos_buffer.c,
src/rgeos_geos2R.c: removing empty polygons
2013-09-16 12:23 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-09-16 12:22 rsbivand
* man/topo-unary-gDelaunayTriangulation.Rd: tidy
2013-09-16 11:15 rsbivand
* man/topo-unary-gDelaunayTriangulation.Rd: tidy
2013-09-16 11:01 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-09-03 10:17 rsbivand
* NAMESPACE, R/rgeos_topology.R,
man/topo-unary-gDelaunayTriangulation.Rd, src/rgeos_topology.c:
Delaunay triangulation
2013-09-02 21:14 rsbivand
* R/rgeos_topology.R: start incorporating triangulation
2013-09-02 19:18 rsbivand
* DESCRIPTION, R/rgeos_topology.R, src/init.c, src/rgeos.h,
src/rgeos_topology.c: start incorporating triangulation
2013-09-02 12:29 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-09-02 12:28 rsbivand
* inst/tests/testxml/general/TestInteriorPoint.xml: revert xml
tests to pass GEOS 3.2.0
2013-09-01 17:47 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-09-01 17:22 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-09-01 17:20 rsbivand
* DESCRIPTION, cleanup, man/topo-unary-gPointOnSurface.Rd: add
cleanup
2013-09-01 16:40 rsbivand
* inst/tests/testxml/general/TestInteriorPoint.xml: revert two
changes in gPointOnSurface test to match GEOS 3.4.* to suit < 3.4
2013-09-01 10:31 rsbivand
* inst/tests/testxml/general/TestInteriorPoint.xml,
man/topo-unary-gPointOnSurface.Rd: change gPointOnSurface test to
match GEOS 3.4.*
2013-08-30 16:52 edzer
* DESCRIPTION, R/over.R, man/comment-functions.Rd, man/labelpt.Rd,
man/topo-unary-gPolygonize.Rd, man/utility-functions.Rd: moved sp
and methods from Depends: to Imports:
added library(sp) to the examples, where needed
removed the ::: using the exported overDF_for_rgeos from sp
1.0-12
increased sp dependency to 1.0-12
2013-07-18 10:30 rsbivand
* DESCRIPTION, src/rgeos_R2geos.c: check comment length against
Polygons slot
2013-07-17 13:57 rsbivand
* man/pred-binary-gContains.Rd: tidy
2013-07-02 20:17 rhijmans
* R/rgeos_buffer.R:
2013-07-02 20:15 rhijmans
* man/misc-gBuffer.Rd:
2013-07-02 20:12 rhijmans
* R/rgeos_buffer.R:
2013-06-22 14:17 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-06-22 14:16 rsbivand
* DESCRIPTION, NAMESPACE, R/labelpt.R, man/labelpt.Rd: update
patched to polygonsLabel
2013-06-22 13:40 rsbivand
* ChangeLog, inst/ChangeLog: more symbol check issues
2013-06-22 13:39 rsbivand
* R/AAA.R, R/rgeos_misc.R, R/rgeos_predicate_binary.R,
R/rgeos_predicate_unary.R, R/rgeos_topology.R,
R/rgeos_topology_binary.R: tidy
2013-06-22 12:23 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-06-22 12:23 rsbivand
* man/comment-functions.Rd, man/constructor-SpatialCollections.Rd,
man/misc-gBuffer.Rd, man/misc-gDistance.Rd,
man/pred-binary-gIntersects.Rd, man/pred-binary-gRelate.Rd,
man/pred-unary-gIsValid.Rd, man/topo-bin-gIntersection.Rd,
man/topo-bin-gUnion.Rd, man/topo-unary-gCentroid.Rd,
man/topo-unary-gConvexHull.Rd, man/topo-unary-gEnvelope.Rd,
man/topo-unary-gPointOnSurface.Rd, man/topo-unary-gSimplify.Rd:
more symbol check issues
2013-06-21 11:44 rsbivand
* DESCRIPTION, R/AAA.R: tidy
2013-05-05 08:03 rsbivand
* configure, configure.ac: add Unversioned directory to svn
revision
2013-04-26 09:26 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-04-26 09:26 rsbivand
* DESCRIPTION: Kirill Müller's reversion to GEOS 3.2.0
2013-04-26 09:25 rsbivand
* DESCRIPTION, configure, configure.ac: Kirill Müller's reversion
to GEOS 3.2.0
2013-04-09 16:47 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-04-09 13:47 rsbivand
* src/rgeos_geos2R.c: length of IDs guard
2013-04-08 17:30 rsbivand
* R/rgeos_topology.R, man/topo-unary-gPolygonize.Rd: fix bug in
gPolygonize ids
2013-04-06 08:05 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-04-06 08:04 rsbivand
* configure, configure.ac: checking with clang++ in configure
2013-04-05 21:05 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-04-05 20:02 rsbivand
* configure: update configure.ac to force C++ test linking
2013-04-05 19:58 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-04-05 19:53 rsbivand
* DESCRIPTION, configure, configure.ac: update configure.ac to
force C++ test linking
2013-03-29 11:00 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-03-29 10:59 rsbivand
* ChangeLog, DESCRIPTION, inst/ChangeLog, src/rgeos_R2geos.c,
src/rgeos_R2geosMP.c, src/rgeos_bbox.c, src/rgeos_buffer.c,
src/rgeos_coord.c, src/rgeos_geos2R.c, src/rgeos_topology.c,
src/rgeos_topology_binary.c: remove clang warnings
2013-03-04 09:53 rsbivand
* configure: tidy
2013-02-23 11:39 rsbivand
* DESCRIPTION, R/rgeos_buffer.R, R/rgeos_misc.R,
R/rgeos_predicate_binary.R, R/rgeos_predicate_unary.R,
R/rgeos_topology.R, R/rgeos_topology_binary.R, R/rgeos_wkt.R:
enforce logical byid
2013-02-06 16:58 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-02-06 09:18 rsbivand
* DESCRIPTION, R/rgeos_topology.R, man/topo-unary-gPolygonize.Rd:
fix bug in gPolygonize for > 2 output objects
2013-01-31 16:46 rsbivand
* inst/tests/testxml/general,
inst/tests/testxml/general/TestBoundary.xml,
inst/tests/testxml/general/TestCentroid.xml,
inst/tests/testxml/general/TestConvexHull-big.xml,
inst/tests/testxml/general/TestConvexHull.xml,
inst/tests/testxml/general/TestFunctionAA.xml,
inst/tests/testxml/general/TestFunctionAAPrec.xml,
inst/tests/testxml/general/TestFunctionLA.xml,
inst/tests/testxml/general/TestFunctionLAPrec.xml,
inst/tests/testxml/general/TestFunctionLL.xml,
inst/tests/testxml/general/TestFunctionLLPrec.xml,
inst/tests/testxml/general/TestFunctionPA.xml,
inst/tests/testxml/general/TestFunctionPL.xml,
inst/tests/testxml/general/TestFunctionPLPrec.xml,
inst/tests/testxml/general/TestFunctionPP.xml,
inst/tests/testxml/general/TestInteriorPoint.xml,
inst/tests/testxml/general/TestRectanglePredicate.xml,
inst/tests/testxml/general/TestRelateAA.xml,
inst/tests/testxml/general/TestRelateAC.xml,
inst/tests/testxml/general/TestRelateLA.xml,
inst/tests/testxml/general/TestRelateLC.xml,
inst/tests/testxml/general/TestRelateLL.xml,
inst/tests/testxml/general/TestRelatePA.xml,
inst/tests/testxml/general/TestRelatePL.xml,
inst/tests/testxml/general/TestRelatePP.xml,
inst/tests/testxml/general/TestSimple.xml,
inst/tests/testxml/general/TestValid.xml,
inst/tests/testxml/general/TestValid2-big.xml,
inst/tests/testxml/general/TestValid2.xml,
inst/tests/testxml/general/TestWithinDistance.xml: tidy
2013-01-31 16:45 rsbivand
* inst/tests/testxml/general: tidy
2013-01-16 09:03 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2013-01-16 09:02 rsbivand
* DESCRIPTION, R/AAA.R: move startup message to .onAttach
2012-12-18 14:10 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-12-18 14:09 rsbivand
* DESCRIPTION: tidy
2012-12-08 17:29 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-12-08 16:53 rsbivand
* R/AAA.R: versions in startup messages
2012-12-08 16:50 rsbivand
* R/AAA.R: versions in startup messages
2012-12-08 16:47 rsbivand
* configure, configure.ac: versions in configure
2012-12-03 20:27 rsbivand
* R/AAA.R: tidy
2012-11-20 20:13 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-11-20 20:09 rsbivand
* DESCRIPTION: cumulation change in rgeos_binarytopologyfunc to
avoid collection in collection error
2012-11-20 19:21 rsbivand
* src/rgeos_topology_binary.c: cumulation change in
rgeos_binarytopologyfunc to avoid collection in collection error
2012-11-12 09:30 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-11-12 08:00 rsbivand
* R/gpc_geos.R: adding conversion of a NULL to gpc.poly
2012-11-11 19:01 rsbivand
* DESCRIPTION, R/Rgpc_funcs.R: adding conversion of a NULL to
gpc.poly
2012-11-05 17:30 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-11-05 17:30 rsbivand
* man/comment-functions.Rd: dontrun part of check holes example
2012-11-05 08:56 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-11-05 08:55 rsbivand
* DESCRIPTION: tidy
2012-09-30 18:05 edzer
* DESCRIPTION, NAMESPACE, R/rgeos_wkt.R: removed dependency on
stringr and plyr, replaced two str_ function
calls with the equivalent ones in base R.
2012-09-06 09:30 rsbivand
* inst/wkts, inst/wkts/sline1.wkt, inst/wkts/sline2.wkt,
man/utility-functions.Rd: setScale example from Mao-Gui Hu
2012-08-19 13:07 edzer
* NAMESPACE, R/labelpt.R, man/labelpt.Rd: update function name;
cosmetics.
2012-08-17 20:20 edzer
* DESCRIPTION, NAMESPACE, R/labelpt.R, man/labelpt.Rd: added first
attempt to label points functions, that evolved from
https://stat.ethz.ch/pipermail/r-sig-geo/2012-July/015693.html ;
edited author@R section to DESCRIPTION.
2012-06-24 14:41 rsbivand
* DESCRIPTION, src/rgeos.c, src/rgeos.h, src/rgeos_R2geosMP.c,
src/rgeos_coord.c, src/rgeos_poly2nb.c: remove some -Wall
warnings
2012-06-24 13:28 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-06-24 13:27 rsbivand
* DESCRIPTION, src/dummy.cc, src/local_stubs.c: adding src/dummy.cc
2012-05-07 16:48 rsbivand
* DESCRIPTION, src/rgeos_misc.c: fixed single geometry bug in
gDistance
2012-05-02 09:58 rsbivand
* ChangeLog, inst/ChangeLog: more configure updates
2012-05-02 09:58 rsbivand
* configure, configure.ac: more configure updates
2012-04-24 10:56 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-04-24 10:54 rsbivand
* configure, configure.ac: tidying configure.ac
2012-04-22 11:42 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-04-22 11:42 rsbivand
* DESCRIPTION: add plyr dependency
2012-04-20 08:32 rsbivand
* configure, configure.ac: tidy
2012-04-20 07:06 rsbivand
* R/AAA.R: tidy
2012-04-20 07:01 rsbivand
* DESCRIPTION: tidy
2012-04-20 07:01 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-04-20 07:00 rsbivand
* configure, configure.ac, configure.in, src/Makevars.in: upgrading
configure
2012-04-19 13:20 rsbivand
* inst/tests/test-translate-polygon-collection.R,
src/rgeos_geos2R.c: fixed broken tests
2012-04-17 13:38 rsbivand
* DESCRIPTION, inst/tests/test-translate-polygons.R,
src/rgeos_geos2R.c: broken tests
2012-04-16 13:21 rsbivand
* R/rgeos_util.R: using top-level comment to SpatialPolygons for
all member Polygons commented with OGC SFS kludge
2012-04-16 13:13 rsbivand
* DESCRIPTION, R/rgeos_misc.R, R/rgeos_predicate_binary.R,
R/rgeos_predicate_unary.R, R/rgeos_topology.R,
R/rgeos_topology_binary.R, R/rgeos_util.R: using top-level
comment to SpatialPolygons for all member Polygons commented with
OGC SFS kludge
2012-03-17 15:08 rsbivand
* ChangeLog, DESCRIPTION, inst/ChangeLog: tidy
2012-03-16 18:53 crundel
* src/rgeos_R2geos.c: Fixed crashing bug when ignoring holes with
unknown parent poly
2012-03-16 14:46 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-03-16 11:54 rsbivand
* DESCRIPTION, R/rgeos_misc.R: added createSPComment to
RGEOSMiscFunc
2012-02-22 17:00 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-02-22 16:59 rsbivand
* DESCRIPTION: tidy
2012-01-30 10:44 rsbivand
* DESCRIPTION, R/rgeos_topology.R: revise gLineMerge
2012-01-27 12:31 rsbivand
* man/topo-bin-gUnion.Rd: fix documentation
2012-01-20 10:12 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2012-01-19 19:25 rsbivand
* src/rgeos_poly2nb.c: fixing gBinarySTRtreeQuery
2012-01-19 19:08 rsbivand
* man/experimental-functions.Rd, src/rgeos_poly2nb.c: fixing
gBinarySTRtreeQuery
2012-01-18 19:11 rsbivand