-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog
3497 lines (2115 loc) · 89.3 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
2022-03-24 11:59 rsbivand
* [r685] DESCRIPTION, NEWS.md, src/Makevars.win:
https://github.com/r-spatial/sf/pull/1919
2021-12-14 14:02 rsbivand
* [r684] ChangeLog, NEWS.md, inst/ChangeLog: tidy
2021-12-14 13:40 rsbivand
* [r683] DESCRIPTION, NEWS.md, src/Makevars.ucrt: R4.2 devel
Windows UCRT
2021-11-17 11:35 rsbivand
* [r682] DESCRIPTION: fixing
https://github.com/r-spatial/sf/issues/1843 (partly)
2021-10-07 11:40 rsbivand
* [r681] DESCRIPTION, NEWS.md, configure: tidy
2021-10-02 11:47 rsbivand
* [r680] tests/leak_by_exception.Rout.save: tidy
2021-09-21 20:28 rsbivand
* [r679] ChangeLog, NEWS.md, configure, inst/ChangeLog: tidy
2021-09-14 10:27 rsbivand
* [r678] DESCRIPTION, configure.ac: run autoupdate
2021-09-07 13:14 rsbivand
* [r677] DESCRIPTION: tidy
2021-09-07 10:37 rsbivand
* [r676] NEWS.md: update docs
2021-09-07 10:27 rsbivand
* [r675] configure: tidy
2021-09-07 10:26 rsbivand
* [r674] ChangeLog, inst/ChangeLog: tidy
2021-09-07 10:26 rsbivand
* [r673] ChangeLog, DESCRIPTION, NEWS.md, R/AAA.R: tidy
2021-07-23 15:39 rsbivand
* [r672] DESCRIPTION, src/Makevars.ucrt, src/Makevars.win: add UCRT
tweak
2021-04-27 18:13 rsbivand
* [r670] R/rgeos_util.R: test OverlayNG only >= 3.9.0
2021-04-27 07:39 rsbivand
* [r668] inst/wkts/nc34.wkt, tests/DP_simplify.R,
tests/DP_simplify.Rout.save: revert after GEOS DP regression
fixed
2021-04-27 07:38 rsbivand
* [r667] NEWS.md, R/rgeos_topology.R, man/topo-unary-gSimplify.Rd:
revert after GEOS DP regression fixed
2021-04-25 16:58 rsbivand
* [r665] NEWS.md: gSimplify() use topologyPreserving by defaulr >=
3.10
2021-04-25 16:55 rsbivand
* [r664] R/rgeos_topology.R, man/topo-unary-gSimplify.Rd:
gSimplify() use topologyPreserving by defaulr >= 3.10
2021-04-24 13:51 rsbivand
* [r662] NEWS.md, man/topo-unary-gMakeValid.Rd: use make valid name
changes
2021-04-24 13:30 rsbivand
* [r661] NEWS.md, man/topo-unary-gMakeValid.Rd: use make valid name
changes
2021-04-24 13:22 rsbivand
* [r659] R/rgeos_topology.R, man/topo-unary-gMakeValid.Rd,
src/rgeos_topology.c: use make valid name changes
2021-04-23 13:02 rsbivand
* [r657] man/topo-unary-gMakeValid.Rd: update for www9
2021-04-23 12:24 rsbivand
* [r655] R/rgeos_topology.R, man/topo-unary-gMakeValid.Rd: add keep
collapsed env-var
2021-04-23 09:48 rsbivand
* [r653] NEWS.md, R/rgeos_topology.R, configure,
man/topo-unary-gMakeValid.Rd, src/init.c, src/rgeos.h,
src/rgeos_topology.c: add MakeValidWithParams update
2021-04-21 15:47 rsbivand
* [r652] DESCRIPTION, NEWS.md, R/AAA.R, configure, configure.ac:
adapt for GEOS 3.10.0 version number
2021-02-16 10:09 rsbivand
* [r651] R/rgeos_util.R: fix mistake in OverlayNG detection
2021-02-09 09:18 rsbivand
* [r650] NEWS.md, man/topo-unary-gMaximumInscribedCircle.Rd,
man/topo-unary-gMinumumRotatedRectangle.Rd: tidy
2021-02-09 09:03 rsbivand
* [r649] ChangeLog, inst/ChangeLog: tidy
2021-02-09 09:03 rsbivand
* [r648] NAMESPACE, NEWS.md, R/rgeos_topology.R, src/init.c,
src/rgeos.h, src/rgeos_R2geos.c, src/rgeos_R2geosMP.c,
src/rgeos_buffer.c, src/rgeos_coord.c, src/rgeos_geos2R.c,
src/rgeos_linearref.c, src/rgeos_poly2nb.c, src/rgeos_topology.c,
src/rgeos_topology_binary.c, src/rgeos_wkt.c: adapt for GEOS
3.9.0
2021-01-30 13:22 rsbivand
* [r647] NEWS.md: tidy
2021-01-30 13:21 rsbivand
* [r646] ChangeLog, DESCRIPTION, NEWS.md, inst/ChangeLog,
src/Makevars.win: update Windows static GEOS to 3.9.0
2020-12-10 10:17 rsbivand
* [r645] DESCRIPTION, R/rgeos_util.R,
inst/test_cases/OverlayNG_test_c.rds: GEOS 3.9.0 beta2
2020-10-20 10:56 rsbivand
* [r644] ChangeLog, inst/ChangeLog: tidy
2020-10-20 09:54 rsbivand
* [r643] R/AAA.R, R/rgeos_util.R,
inst/test_cases/OverlayNG_test_a.rds,
inst/test_cases/OverlayNG_test_b.rds, src/rgeos_geos2R.c: add
test for OverlayNG
2020-10-08 14:01 rsbivand
* [r642] ChangeLog, inst/ChangeLog: tidy
2020-10-08 14:00 rsbivand
* [r641] DESCRIPTION, configure, tests/leak_by_exception.Rout.save:
tidy
2020-09-02 08:50 rsbivand
* [r640] man/topo-unary-gCoverageUnion.Rd: tidy
2020-09-01 12:39 rsbivand
* [r639] ChangeLog, inst/ChangeLog: tidy
2020-09-01 12:38 rsbivand
* [r638] man/labelpt.Rd, man/misc-gDistance.Rd,
man/topo-unary-gDelaunayTriangulation.Rd,
man/topo-unary-gSimplify.Rd, man/wkt-functions.Rd: tidy
2020-09-01 11:38 rsbivand
* [r637] DESCRIPTION, configure, configure.ac: add stdlib.h
declaration to configure.ac where missing
2020-08-06 09:57 rsbivand
* [r636] DESCRIPTION, NAMESPACE, R/rgeos_topology.R, configure,
src/init.c, src/rgeos.h, src/rgeos_topology.c: add CoverageUnion
2020-05-08 13:18 rsbivand
* [r634] ChangeLog, inst/ChangeLog: tidy
2020-05-08 13:17 rsbivand
* [r633] DESCRIPTION: tidy
2020-05-08 13:04 rsbivand
* [r632] ChangeLog, inst/ChangeLog: tidy
2020-05-08 13:03 rsbivand
* [r631] src/Makevars.win, tools/winlibs.R: shift Windows binary to
GEOS 3.8
2020-05-08 12:44 rsbivand
* [r630] inst/ChangeLog: tidy
2020-05-08 12:44 rsbivand
* [r629] ChangeLog: tidy
2020-05-08 12:43 rsbivand
* [r628] man/topo-unary-gMakeValid.Rd: add gMakeValid for GEOS >=
3.8.0
2020-05-08 12:17 rsbivand
* [r627] ChangeLog, inst/ChangeLog, man/topo-unary-gMakeValid.Rd:
tidy
2020-05-08 12:13 rsbivand
* [r626] DESCRIPTION, NAMESPACE, R/rgeos_linearref.R,
R/rgeos_topology.R, configure, man/linref-gInterpolate.Rd,
man/linref-gProject.Rd, src/init.c, src/rgeos.h,
src/rgeos_topology.c, tests/leak_by_exception.Rout.save: add
gMakeValid for GEOS >= 3.8.0
2020-03-28 10:46 rsbivand
* [r625] ChangeLog, inst/ChangeLog: tidy
2019-11-13 08:04 rsbivand
* [r623] DESCRIPTION, man/comment-functions.Rd: add page number to
comment help page
2019-10-03 07:49 rsbivand
* [r621] configure, configure.ac: tidy
2019-10-03 07:39 rsbivand
* [r620] DESCRIPTION: tidy
2019-10-02 10:42 rsbivand
* [r619] ChangeLog, inst/ChangeLog: tidy
2019-10-02 10:41 rsbivand
* [r618] DESCRIPTION: tidy
2019-09-03 11:41 rsbivand
* [r617] configure, configure.ac: remove R CMD config CPP
2019-08-16 09:49 rsbivand
* [r616] DESCRIPTION, R/rgeos_predicate_binary.R,
man/pred-binary-gIntersects.Rd: bug in dense binary predicate
matrix row names
2019-08-05 08:42 rsbivand
* [r614] ChangeLog, inst/ChangeLog: tidy
2019-08-05 08:21 rsbivand
* [r613] DESCRIPTION: tidy
2019-08-05 07:47 rsbivand
* [r612] ChangeLog, inst/ChangeLog: tidy
2019-08-05 07:35 rsbivand
* [r610] ChangeLog, inst/ChangeLog: tidy
2019-08-05 07:34 rsbivand
* [r609] DESCRIPTION: tidy
2019-08-05 06:55 rsbivand
* [r608] ChangeLog, inst/ChangeLog: tidy
2019-08-05 06:55 rsbivand
* [r607] man/topo-bin-gUnion.Rd: tidy
2019-08-04 15:37 rsbivand
* [r606] ChangeLog, inst/ChangeLog: changing checkValidity for GEOS
> 3.7.1
2019-08-04 15:35 rsbivand
* [r605] tests/leak_by_exception.Rout.save: changing checkValidity
for GEOS > 3.7.1
2019-08-04 14:55 rsbivand
* [r604] R/rgeos_topology.R, R/rgeos_topology_binary.R,
src/rgeos_R2geos.c: changing checkValidity for GEOS > 3.7.1
2019-08-03 16:06 rsbivand
* [r603] R/rgeos_topology.R, man/topo-bin-gIntersection.Rd,
man/topo-bin-gUnion.Rd, man/utility-functions.Rd: changing
checkValidity for GEOS > 3.7.1
2019-08-03 15:37 rsbivand
* [r602] R/rgeos_topology_binary.R: changing checkValidity for GEOS
> 3.7.1
2019-08-03 15:28 rsbivand
* [r601] R/rgeos_topology_binary.R: changing checkValidity for GEOS
> 3.7.1
2019-08-03 15:18 rsbivand
* [r600] NAMESPACE, man/utility-functions.Rd: changing
checkValidity for GEOS > 3.7.1
2019-08-03 15:02 rsbivand
* [r599] configure: changing checkValidity for GEOS > 3.7.1
2019-08-03 15:01 rsbivand
* [r598] ChangeLog, inst/ChangeLog: changing checkValidity for GEOS
> 3.7.1
2019-08-03 14:59 rsbivand
* [r597] 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,
man/utility-functions.Rd, tests/leak_by_exception.Rout.save:
changing checkValidity for GEOS > 3.7.1
2019-07-31 18:28 rsbivand
* [r596] DESCRIPTION: add pkgdown link
2019-04-24 09:17 rsbivand
* [r595] ChangeLog, inst/ChangeLog: tidy
2019-04-24 09:16 rsbivand
* [r594] man/misc-gBuffer.Rd: tidy
2019-04-24 09:09 rsbivand
* [r593] DESCRIPTION, man/bbox2SP.Rd, man/bbox2SP.rd: tidy
2019-04-23 13:15 rsbivand
* [r592] .Rbuildignore, DESCRIPTION, _pkgdown.yml, man/bbox2SP.rd,
man/linref-gInterpolate.Rd, man/linref-gProject.Rd,
man/misc-gBuffer.Rd, man/misc-gNearestPoints.Rd,
man/pred-unary-gIsValid.Rd: start pkgdown
2019-04-23 12:12 rsbivand
* [r591] ChangeLog, inst/ChangeLog: tidy
2019-04-23 12:11 rsbivand
* [r590] DESCRIPTION, R/rgeos_buffer.R: tidy
2019-03-06 15:02 rsbivand
* [r589] src/Makevars.win, tools/winlibs.R: update Makevars.win and
winlibs.R
2018-12-21 12:35 rsbivand
* [r588] DESCRIPTION, configure, configure.ac: guard against
invalid versions
2018-12-15 12:36 rsbivand
* [r587] ChangeLog, inst/ChangeLog: tidy
2018-12-15 12:36 rsbivand
* [r586] configure: tidy
2018-12-15 00:30 edzer
* [r585] configure, configure.ac: configure stuff for OSX
2018-12-15 00:04 edzer
* [r584] configure, configure.ac: try with static libs
2018-12-13 11:18 rsbivand
* [r583] ChangeLog, inst/ChangeLog: tidy
2018-12-13 11:17 rsbivand
* [r582] DESCRIPTION, configure, configure.ac: ubuntu mess -
changes in ./configure
2018-11-07 13:31 rsbivand
* [r581] ChangeLog, inst/ChangeLog: tidy
2018-10-22 07:10 rsbivand
* [r580] DESCRIPTION, configure, configure.ac: Debian stretch GEOS
version configure issue
2018-10-18 11:38 rsbivand
* [r579] man/utility-functions.Rd: tidy
2018-10-18 11:34 rsbivand
* [r578] DESCRIPTION: tidy
2018-10-18 11:30 rsbivand
* [r577] ChangeLog, inst/ChangeLog: tidy
2018-09-13 11:00 rsbivand
* [r576] R/AAA.R, src/init.c, src/rgeos.c, src/rgeos.h: attempted
version check
2018-09-12 18:16 rsbivand
* [r575] src/rgeos.c, src/rgeos_R2geos.c: tidy after -Wall
2018-09-12 08:49 rsbivand
* [r574] configure, configure.ac: switch geos-config to cclibs from
libs
2018-08-30 15:48 rsbivand
* [r573] DESCRIPTION, configure, configure.ac, src/rgeos.c,
src/rgeos.h, src/rgeos_R2geos.c, src/rgeos_coord.c,
src/rgeos_topology.c, src/rgeos_topology_binary.c,
tests/leak_by_exception.R, tests/leak_by_exception.Rout.save:
testing leaks by exceptions
2018-06-08 06:48 rsbivand
* [r572] ChangeLog, inst/ChangeLog: tidy
2018-06-08 06:47 rsbivand
* [r571] ChangeLog, configure: tidy
2018-06-03 21:05 rsbivand
* [r570] DESCRIPTION, src/rgeos.c, src/rgeos_geos2R.c: rchk fixes,
mostly MAKE_CLASS
2018-06-01 11:39 rsbivand
* [r569] ChangeLog, inst/ChangeLog: tidy
2018-06-01 11:38 rsbivand
* [r568] DESCRIPTION, LICENSE.note: add LICENSE.note
2018-05-29 18:13 rsbivand
* [r567] DESCRIPTION: tidy
2018-05-29 17:40 rsbivand
* [r566] NAMESPACE, R/bbox2SP.R: tidy
2018-05-28 12:14 rsbivand
* [r565] src/rgeos.c, src/rgeos_validate.c: trying to fix rchk and
valgrind issues
2018-05-21 17:57 rsbivand
* [r564] R/bbox2SP.R, man/bbox2SP.rd: corrected bbox2SP
2018-04-27 12:36 rsbivand
* [r563] DESCRIPTION, NAMESPACE, R/bbox2SP.R, man/bbox2SP.rd: add
bbox2SP
2018-04-08 13:34 rsbivand
* [r562] DESCRIPTION, configure: gcc 8 correction
2018-04-07 21:25 edzer
* [r561] src/rgeos.c: see
https://github.com/r-spatial/sf/issues/694
2017-10-30 12:01 rsbivand
* [r560] configure: tidy
2017-10-30 12:00 rsbivand
* [r559] DESCRIPTION: tidy
2017-10-24 13:42 rsbivand
* [r558] man/utility-functions.Rd: tidy
2017-10-23 18:57 rsbivand
* [r557] DESCRIPTION, NAMESPACE, R/AAA.R: add extSoftVersion
2017-09-25 10:53 rsbivand
* [r556] ChangeLog, inst/ChangeLog: tidy
2017-09-25 10:51 rsbivand
* [r555] configure: updating for stricter autoconf
2017-09-25 10:50 rsbivand
* [r554] DESCRIPTION: updating for stricter autoconf
2017-09-25 10:49 rsbivand
* [r553] configure, configure.ac: updating for stricter autoconf
2017-09-25 10:46 rsbivand
* [r552] configure, configure.ac: updating for stricter autoconf
2017-09-18 08:59 rsbivand
* [r551] DESCRIPTION: tidy
2017-09-18 08:27 rsbivand
* [r550] ChangeLog, configure, inst/ChangeLog: tidy
2017-09-18 08:26 rsbivand
* [r549] DESCRIPTION, tools, tools/winlibs.R: transition to winlibs
2017-09-15 13:09 rsbivand
* [r548] DESCRIPTION, src/Makevars.win: migrate to winlib/gdal
2017-04-05 12:05 rsbivand
* [r547] ChangeLog, inst/ChangeLog: tidy
2017-04-05 12:04 rsbivand
* [r546] configure: tidy
2017-04-05 12:03 rsbivand
* [r545] DESCRIPTION, src/rgeos.c, src/rgeos_validate.c: PROTECT
issues
2017-01-08 19:11 rsbivand
* [r544] ChangeLog, inst/ChangeLog: tidy
2016-12-10 10:02 rsbivand
* [r543] configure: omitted trap in init.c
2016-12-10 10:00 rsbivand
* [r542] DESCRIPTION, src/init.c: omitted trap in init.c
2016-10-19 11:45 rsbivand
* [r541] ChangeLog, inst/ChangeLog: tidy
2016-10-11 03:24 rsbivand
* [r540] ChangeLog, R/rgeos_misc.R, man/misc-gNearestPoints.Rd,
src/rgeos.h, src/rgeos_misc.c: checking NearestPoint dependency
on >= 3.4
2016-10-10 07:28 rcs
* [r539] ChangeLog, DESCRIPTION, NAMESPACE, R/rgeos_misc.R,
configure, inst/ChangeLog, man/misc-gNearestPoints.Rd,
src/init.c, src/rgeos.h, src/rgeos_misc.c,
tests/testthat/test-misc.R: add gNearestPoints
2016-10-08 08:14 rcs
* [r538] tests/testthat/test-linearref.R: fix linearref tests
2016-10-07 21:53 rcs
* [r537] tests/testthat/test-linearref.R: fix linearref tests
2016-09-14 11:18 rcs
* [r536] R/rgeos_spExtensions_Methods.R, R/rgeos_topology.R: fix
partial argument match
2016-09-07 13:10 rsbivand
* [r535] ChangeLog, inst/ChangeLog: tidy
2016-09-07 13:09 rsbivand
* [r534] src/rgeos_predicate_binary.c: block list output from
gRelate
2016-09-07 10:03 rsbivand
* [r533] inst/ChangeLog: tidy
2016-09-07 09:50 rcs
* [r532] ChangeLog, man/topo-unary-gEnvelope.Rd: fix typo
2016-09-07 09:48 rcs
* [r531] ChangeLog, src/rgeos_geos2R.c: fix stack imbalance in
rgeos_geosring2SpatialRings()
2016-09-06 13:13 rcs
* [r530] ChangeLog, R/rgeos_linearref.R, man/linref-gProject.Rd,
src/rgeos_linearref.c: update Rd; fix typo
2016-09-06 11:41 rsbivand
* [r529] ChangeLog, inst/ChangeLog: tidy
2016-09-06 11:40 rsbivand
* [r528] configure: tidy
2016-09-06 11:38 rsbivand
* [r527] inst/tests, tests/test-all.R, tests/testthat: moved tests
folder
2016-09-06 10:50 rcs
* [r526] ChangeLog, DESCRIPTION, NAMESPACE, R/rgeos_linearref.R,
inst/tests/test-linearref.R, man/linref-gInterpolate.Rd,
man/linref-gProject.Rd, src/init.c, src/rgeos.h,
src/rgeos_linearref.c: added linear referencing functions
(gInterpolate/gProject)
2016-08-30 17:36 rsbivand
* [r525] DESCRIPTION, src/rgeos_coord.c: protect s in
src/rgeos_coord.c
2016-04-04 11:37 rsbivand
* [r524] ChangeLog, configure, inst/ChangeLog: tidy
2016-04-04 11:35 rsbivand
* [r523] DESCRIPTION, src/Makevars.win: update to win-4.9.3
2016-02-15 07:38 rsbivand
* [r522] DESCRIPTION, R/rgeos_buffer.R: gBuffer NULL case
2016-02-13 11:26 rsbivand
* [r521] ChangeLog, inst/ChangeLog: tidy
2016-02-12 20:31 rsbivand
* [r520] DESCRIPTION, R/rgeos_buffer.R: buffer byid to FALSE if
single feature
2016-02-12 18:58 rsbivand
* [r519] R/rgeos_buffer.R: buffer byid to FALSE if single feature
2016-02-09 12:53 rsbivand
* [r518] ChangeLog, inst/ChangeLog: buffer byid to FALSE if single
feature
2016-02-09 12:52 rsbivand
* [r517] DESCRIPTION, R/rgeos_buffer.R, configure,
src/rgeos_buffer.c: buffer byid to FALSE if single feature
2016-01-23 19:12 rsbivand
* [r516] DESCRIPTION, R/rgeos_misc.R: rev 66 oddity partial
workaround
2015-11-04 12:46 rsbivand
* [r515] configure: tidy
2015-11-04 12:43 rsbivand
* [r514] ChangeLog, inst/ChangeLog: tidy
2015-11-04 11:10 rsbivand
* [r513] DESCRIPTION, src/rgeos_buffer.c: rgeos_buffer id overrun
bug fix
2015-10-26 14:28 rsbivand
* [r512] ChangeLog, inst/ChangeLog: tidy
2015-10-25 10:38 rsbivand
* [r511] man/topo-bin-gIntersection.Rd: fix td bug
2015-10-25 10:28 rsbivand
* [r510] ChangeLog, DESCRIPTION, inst/ChangeLog,
man/topo-bin-gIntersection.Rd, src/rgeos_topology_binary.c: fix
td bug
2015-09-29 07:07 rsbivand
* [r509] man/topo-bin-gIntersection.Rd: extra intersection example
2015-09-28 15:51 rsbivand
* [r508] 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
* [r507] src/rgeos_geos2R.c: SpatialRings stack unbalance
2015-09-26 17:45 rsbivand
* [r506] 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
* [r505] DESCRIPTION: adding unaryUnion to topo-bin if FALSE byid
2015-09-26 17:27 rsbivand
* [r504] 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
* [r503] 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
* [r502] 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
* [r501] 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
* [r500] DESCRIPTION, R/over.R: version bump; let overGeomGeomDF
absorb & pass on minDimension to overGeomGeom
2015-09-01 10:27 rsbivand
* [r499] ChangeLog, inst/ChangeLog: tidy
2015-08-31 19:59 edzer
* [r498] R/over.R: pass on colnames(x) if x is matrix
2015-08-31 16:49 edzer
* [r497] R/over.R: pass names on to returned list
2015-08-31 16:13 edzer
* [r496] R/over.R, man/misc-over.Rd: complete documentation, clean
up code.
2015-08-31 11:49 rsbivand
* [r495] configure, configure.ac: strip dev from version
2015-08-25 11:48 rsbivand
* [r494] 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
* [r493] R/over.R: default to gIntersects(), because of the
performance penalty
2015-08-22 13:33 edzer
* [r492] R/over.R: move constant check outside loop
2015-08-21 22:13 edzer
* [r491] R/over.R: increase over sanity
2015-08-21 15:03 edzer
* [r490] R/over.R: catch omission on unrealistic dimension
requirements
2015-08-20 20:45 edzer
* [r489] R/over.R: clean up over stuff, order by dimension from
gRelate
2015-08-20 09:23 edzer
* [r488] R/over.R: some more tweeks for SpatialMultiPoints
2015-08-19 14:52 edzer
* [r487] man/misc-over.Rd: add overGeomGeom doc
2015-08-19 14:11 edzer
* [r486] NAMESPACE: export overGeomGeomDF and overGeomGeom
2015-08-13 09:22 edzer
* [r485] src/rgeos_R2geos.c: clean up
2015-06-28 20:36 rsbivand
* [r484] 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
* [r483] R/AAA.R: add utils:: to packageVersion()
2015-06-05 07:54 rsbivand
* [r482] ChangeLog, inst/ChangeLog: tidy
2015-06-05 07:53 rsbivand
* [r481] ChangeLog, inst/ChangeLog: tidy
2015-06-05 07:52 rsbivand
* [r480] DESCRIPTION: tidy
2015-05-29 13:49 rsbivand
* [r479] ChangeLog, inst/ChangeLog: tidy
2015-05-29 13:47 rsbivand
* [r478] DESCRIPTION: tidy
2015-05-05 17:02 rsbivand
* [r477] 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
* [r476] man/topo-bin-gIntersection.Rd: typo
2015-04-23 21:45 edzer
* [r475] src/rgeos_validate.c: add const declarations for SEXPs
2015-04-23 21:43 edzer
* [r474] R/over.R: fix bug for
SpatialPolygons,SpatialPolygonsDataFrame
2015-04-13 15:59 rsbivand
* [r473] .Rbuildignore, R/labelpt.R, configure.ac, svn2cl.xsl: fix
polygonsLabel
2015-04-09 13:59 rsbivand
* [r472] DESCRIPTION, R/AAA.R, src/init.c, src/rgeos.c,
src/rgeos.h: add linking to version
2015-03-11 13:09 rsbivand
* [r471] ChangeLog, inst/ChangeLog: tidy
2015-03-11 13:08 rsbivand
* [r470] R/labelpt.R, man/pred-unary-gIsSimple.Rd,
man/pred-unary-gIsValid.Rd: tidy
2015-03-11 12:48 rsbivand
* [r469] ChangeLog, inst/ChangeLog: tidy
2015-03-10 08:30 rsbivand
* [r468] inst/README, inst/README.windows: OSX install note
2015-03-09 07:37 edzer
* [r467] NAMESPACE, man/class-SpatialCollections.Rd: exportClass
Spatial*NULL classes
2015-03-08 16:04 rsbivand
* [r466] 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
* [r465] DESCRIPTION: added extra geos-config checks
2015-03-08 12:34 rsbivand
* [r464] configure, configure.ac: added extra geos-config checks
2015-03-07 17:30 rsbivand
* [r463] configure, configure.ac: added extra geos-config checks
2015-01-29 08:19 edzer
* [r462] R/over.R, man/pred-binary-gIntersects.Rd: improve
readability overGeomGeom
2015-01-28 22:58 edzer
* [r461] R/over.R: fix overGeomGeom for length(x) == 1
2014-09-21 14:09 rsbivand
* [r460] ChangeLog, inst/ChangeLog: tidy
2014-09-21 14:09 rsbivand
* [r459] DESCRIPTION, R/rgeos_topology_binary.R,
man/topo-bin-gIntersection.Rd: deprecate drop_not_poly