-
Notifications
You must be signed in to change notification settings - Fork 27
/
ChangeLog
5388 lines (3102 loc) · 111 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
2015-12-18 23:07 edzer
* R/SpatialLinesDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R: correct [ subsetting when i
is all FALSE; report by Francois Rousseau.
2015-12-14 22:00 edzer
* man/geometry-methods.Rd: add examples
2015-12-14 21:50 edzer
* NAMESPACE, R/Spatial-methods.R, R/over.R,
man/geometry-methods.Rd: add geometry<- method, with Spatial
value; add docs
2015-12-05 23:07 edzer
* NAMESPACE, R/rbind.R, man/SpatialMultiPoints.Rd,
man/SpatialMultiPointsDataFrame-class.Rd: addressing rbind and
docs issues raised by Kent Johnson on r-sig-geo, 5 Dec 2015
2015-11-19 14:09 edzer
* R/SpatialPointsDataFrame-methods.R: get row.names of coords
correctly if it is a SpatialPoints object.
2015-10-30 19:01 rsbivand
* R/SpatialPolygonsDataFrame-methods.R,
man/SpatialPolygonsDataFrame-class.Rd: non-default coercion
SPolDF -> SPol
2015-10-26 08:09 rsbivand
* R/GridTopology-methods.R, R/SpatialGrid-methods.R,
inst/include/sp.h, src/sp.h: add comment to SGr and SPix coercion
to SPol
2015-10-19 15:44 edzer
* R/SpatialLines-methods.R, R/projected.R,
man/SpatialLines-class.Rd: coordinates method for SpatiaLines now
retains rownames.
2015-10-18 09:36 edzer
* ChangeLog, DESCRIPTION, inst/NEWS.Rd, man/sp-deprecated.Rd:
version bump; remove \alias{overlay} in help
2015-10-17 15:51 edzer
* inst/ChangeLog: tidy
2015-10-17 15:51 edzer
* inst/NEWS.Rd: tidy
2015-10-13 14:48 edzer
* R/spsample.R: don't generate rownames on SpatialPoints in
spsample.Spatial
2015-10-13 13:36 rsbivand
* R/spsample.R: duplicate rownames warning in spsample
2015-10-06 01:57 edzer
* R/merge.R: update from Robert Hijmans
2015-10-05 15:46 edzer
* demo/depend.R: update depend script to use R tools
2015-09-29 11:59 rsbivand
* DESCRIPTION, R/CRS-methods.R, man/CRS-class.Rd: adding argument
to CRS to avoid checking
2015-09-20 20:06 edzer
* man/SpatialLines-class.Rd, man/SpatialLinesDataFrame-class.Rd:
update docs
2015-09-20 14:57 edzer
* R/SpatialLines-methods.R, R/SpatialLinesDataFrame-methods.R: add
conversion from SpatialLines to SpatialMultiPoints and from
SpatialLinesDataFrame to SpatialMultiPointsDataFrame
2015-09-20 14:23 edzer
* tests/agg.Rout.save: add test output
2015-09-20 12:18 edzer
* tests/agg.R: add aggregate test
2015-09-20 12:18 edzer
* R/SpatialLines-methods.R, demo/mp.R, inst/NEWS.Rd,
inst/include/sp.h, src/sp.h, vignettes/intro_sp.Rnw,
vignettes/over.Rnw: Lines -> SpatialPoints now drops (duplicate)
row.names
update tests, demo, intro vignette, over vignette
2015-09-10 14:28 edzer
* inst/NEWS.Rd: update for 1.2-1
2015-09-10 14:26 edzer
* inst/NEWS.Rd: typo
2015-09-10 14:07 edzer
* DESCRIPTION: increase version dependency on rgeos
2015-09-10 06:17 edzer
* DESCRIPTION, R/SpatialMultiPoints-methods.R,
R/SpatialMultiPointsDataFrame-methods.R, R/over.R,
man/aggregate.Rd, vignettes/over.Rnw: version bump; correct
printing of SpatialMultiPoint* objects with
zero features; aggregate() now passes minDimension on to rgeos;
aggregate() explanation extended in vignette.
2015-09-07 15:23 edzer
* tests/pass1.Rout.save: align with rgdal 1.0-7 and the patched
PROJ.4
2015-09-05 10:31 rsbivand
* man/CRS-class.Rd: note on proj_def.dat in help file
2015-09-02 18:34 edzer
* ChangeLog, tests/fail1.Rout.save: tidy
2015-09-02 18:25 edzer
* inst/ChangeLog: tidy
2015-09-02 08:35 edzer
* demo/depend.R: update
2015-09-01 13:00 edzer
* tests/pass1.Rout.save: update test output
2015-09-01 12:53 edzer
* R/Class-SpatialPoints.R, inst/NEWS.Rd: tidy; extend warning to
indicate deprecation of duplicate rownames in SpatialPoints
2015-09-01 10:53 edzer
* ChangeLog, R/Spatial-methods.R, demo/00Index, demo/mp.R,
inst/NEWS.Rd, man/SpatialMultiPointsDataFrame-class.Rd: add mp
demo and NEWS.Rd; modify warning for non-mercator data if bgMap
is set
2015-09-01 07:20 edzer
* inst/ChangeLog: tidy
2015-09-01 06:35 edzer
* demo/depend.R: tidy
2015-08-31 20:05 edzer
* tests/over2.R, tests/over2.Rout.save, vignettes/over.Rnw: tidy
2015-08-31 17:12 edzer
* vignettes/over.Rnw: correct vignette
2015-08-31 16:52 edzer
* R/over.R, tests/over2.R, tests/over2.Rout.save: clean up tests;
tidy code; sync with rgeos
2015-08-22 13:31 edzer
* build-prep.sh: cp -p
2015-08-22 13:29 edzer
* DESCRIPTION, inst/include/sp.h, man/over.Rd, src/sp.h,
vignettes/over.Rnw: update docs and vignette for over(); version
bump.
2015-08-21 22:15 edzer
* R/over.R, tests/over2.Rout.save: improve over priority
2015-08-21 15:10 edzer
* tests/over2.R, tests/over2.Rout.save: add secondary over tests
2015-08-21 15:09 edzer
* R/over.R, tests/fail1.Rout.save, tests/over.Rout.save,
tests/pass1.Rout.save: clean up code, update tests
2015-08-20 09:24 edzer
* DESCRIPTION, R/Class-SpatialPoints.R,
R/SpatialMultiPoints-methods.R,
R/SpatialMultiPointsDataFrame-methods.R, R/over.R,
tests/mp.Rout.save: more updates for SpatialMultiPoints
2015-08-18 16:44 edzer
* NAMESPACE, R/Spatial-methods.R, R/SpatialMultiPoints-methods.R,
R/aggregate.R, R/over.R: remove overlay() method;
2015-08-13 21:15 edzer
* R/over.R: attempt to defer over to rgeos
2015-08-13 20:19 edzer
* R/SpatialMultiPoints-methods.R, tests/mp.Rout.save: add rownames
with group to coords matrix
2015-08-13 08:19 edzer
* NAMESPACE, R/SpatialMultiPoints-methods.R, R/aggregate.R,
R/spplot.R, man/SpatialMultiPoints-class.Rd,
man/SpatialMultiPointsDataFrame-class.Rd, man/spplot.Rd,
tests/mp.Rout.save: methods for SpatialMultiPoints*
2015-08-12 21:45 edzer
* R/SpatialMultiPoints-methods.R,
R/SpatialMultiPointsDataFrame-methods.R: add coerce to
SpatialPoints*
2015-08-11 20:40 edzer
* DESCRIPTION, NAMESPACE, R/Class-SpatialMultiPoints.R,
R/Class-SpatialMultiPointsDataFrame.R,
R/SpatialMultiPoints-methods.R,
R/SpatialMultiPointsDataFrame-methods.R,
man/SpatialMultiPoints-class.Rd, man/SpatialMultiPoints.Rd,
man/SpatialMultiPointsDataFrame-class.Rd, man/addattr.Rd,
man/coordinates-methods.Rd, man/coordnames-methods.Rd,
man/geometry-methods.Rd, tests/mp.Rout.save: add support for
SpatialMultiPoint and SpatialMultiPointDataFrame
2015-07-23 11:16 edzer
* R/Spatial-methods.R, man/00sp.Rd, man/CRS-class.Rd: update urls,
update warning in case of mercator bg maps
2015-07-20 14:18 edzer
* DESCRIPTION, demo/webmap.R, man/spplot.Rd: tidy
2015-07-20 13:32 edzer
* NAMESPACE, R/spplot.R, demo/webmap.R: move panel functions to sp
2015-07-20 11:01 edzer
* demo/webmap.R: tidy
2015-07-20 10:50 edzer
* R/SpatialPolygons-displayMethods.R: bgMap argument default value
2015-07-20 10:30 edzer
* R/Spatial-methods.R, demo/00Index, demo/webmap.R: add webmap
examples: OpenStreetMap or google maps from ggmap or RgoogleMaps
as background to plot or spplot
2015-07-13 19:11 edzer
* man/SpatialPoints-class.Rd, tests/pass1.Rout.save: tidy; CRS
effects
2015-07-13 18:20 edzer
* demo/meuse.R: change full CRS def into CRS("+init=epsg:28992")
2015-07-07 10:09 edzer
* NAMESPACE: make check pass on r-devel
2015-07-02 11:03 edzer
* DESCRIPTION, NAMESPACE, inst/include/sp.h, src/sp.h: add imports
from base
2015-06-30 05:53 rsbivand
* NAMESPACE, R/recenter.R, man/nowrapSpatialLines.Rd: move nowrap*
to maptools
2015-06-28 12:14 rsbivand
* NAMESPACE: CRAN _R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_=true
NAMESPACE tidy
2015-06-14 21:04 edzer
* ChangeLog, DESCRIPTION, R/aggregate.R, man/aggregate.Rd,
tests/base.Rout.save, tests/grid.Rout.save,
tests/pass1.Rout.save: default for by argument in aggregate(),
aggregating all;
tidy tests; bump version number
2015-06-05 10:03 edzer
* inst/ChangeLog: tidy
2015-06-05 09:55 edzer
* inst/ChangeLog: tidy
2015-06-05 09:55 edzer
* DESCRIPTION, NAMESPACE, R/spdists.R, inst/include/sp.h, src/sp.h,
src/sp.h.in: add some options to spDists.
2015-06-02 20:46 edzer
* NAMESPACE, R/Spatial-methods.R, R/SpatialGridDataFrame-methods.R,
R/bubble.R, man/bubble.Rd: add proper degree scales to bubble if
data are longlat
2015-05-28 19:15 edzer
* NAMESPACE, R/Spatial-methods.R, man/Spatial-class.Rd: add head
and tail methods, donated by Don MacQueen
2015-05-23 16:10 edzer
* R/spplot.R: clean up sppanel method for lists, argument first now
has no default.
2015-05-23 14:33 edzer
* R/merge.R, R/spdists.R, man/merge.Rd, man/spDistsN1.Rd: new
method for sp::merge, supplied by Robert Hijmans;
tidying spDists, when ncol(x) > 2
2015-05-21 07:33 edzer
* R/SpatialPointsDataFrame-methods.R: in as.data.frame methods,
pass ... on to data.frame()
2015-05-19 18:50 edzer
* R/spdists.R, man/spDistsN1.Rd, src/gcdist.c, src/init.c,
src/sp.h: added two options to spDists, to compute distance
between consecutive
points (as LineLength does), and to compute pairwise distances
(diagonal).
2015-05-19 07:10 edzer
* man/SpatialLines.Rd: tidy
2015-05-18 13:35 edzer
* R/spplot.R: fix sp.layout bug, reported by Tim Appelhans on
r-sig-geo
2015-05-13 11:47 edzer
* R/spdists.R, man/spDistsN1.Rd: improved docs for spDists,
mentioning that longlat is infered from x if x is Spatial
2015-05-10 21:20 edzer
* R/Spatial-methods.R: remove warning on assigning lists to
data.frame columns, requested
by Sebastian Meyer.
2015-05-04 08:59 rsbivand
* DESCRIPTION, NAMESPACE: expose compassRose
2015-05-01 19:58 edzer
* src/zerodist.c: remove unused variable
2015-04-26 19:09 edzer
* ChangeLog, DESCRIPTION: bump version
2015-04-24 09:00 edzer
* inst/ChangeLog: tidy
2015-04-24 08:59 edzer
* ChangeLog, R/aggregate.R: aggregate: add drop_lower_td = TRUE to
gIntersection call
2015-04-24 08:57 edzer
* inst/ChangeLog: tidy
2015-04-24 07:42 rsbivand
* R/CRS-methods.R: change to nzchar
2015-04-24 07:33 rsbivand
* R/CRS-methods.R, R/Class-Spatial.R, R/SpatialLines-methods.R,
R/SpatialPolygons-methods.R, R/projected.R: change to nzchar
2015-04-23 17:56 rsbivand
* R/CRS-methods.R: R-devel needs !is.na(projargs) in CRS for lazy
loading
2015-04-23 14:36 edzer
* man/as.SpatialPolygons.GridTopology.Rd: removed non-working
example lines
2015-04-23 10:47 rsbivand
* R/SpatialPolygonsDataFrame-methods.R, inst/include/sp_xports.c,
src/sp_xports.c: SpatialPolygonsDataFrame error message
2015-04-21 06:29 edzer
* man/spplot.Rd: modified example
2015-04-20 19:16 edzer
* R/spplot.R: more spplot fixes
2015-04-20 18:58 edzer
* R/spplot.R, man/spplot.Rd: more patches from Josh O'Brien
2015-04-19 17:10 edzer
* DESCRIPTION: add Josh O'Brien to the ctb list
2015-04-19 17:04 edzer
* R/spplot.R, man/spplot.Rd: corrections to sp.layout processing,
with help from Josh O'Brien
2015-04-16 19:16 edzer
* .Rbuildignore, ChangeLog, build-prep.sh, build-release.sh: add
build-release script, so that not every build triggers an svn
`tidy' commit
2015-04-16 19:15 edzer
* inst/ChangeLog: tidy
2015-04-16 19:14 edzer
* inst/ChangeLog: tidy
2015-04-16 17:08 rsbivand
* inst/ChangeLog: tidy
2015-04-16 16:39 edzer
* R/aggregate.R: add comments to somewhat dense code
2015-04-16 14:38 edzer
* R/aggregate.R: break when IDs contain space characters
2015-04-16 12:44 rsbivand
* inst/ChangeLog: tidy
2015-04-16 12:44 rsbivand
* inst/ChangeLog: tidy
2015-04-16 10:01 edzer
* .Rbuildignore, R/SpatialPolygonsDataFrame-methods.R,
R/aggregate.R, man/aggregate.Rd: correct SpatialPolygonsDataFrame
subsetting with character argument
add area-weighted aggregation, as an option to sp::aggregate
2015-04-14 21:36 edzer
* ChangeLog, R/Spatial-methods.R, build-prep.sh: warn when
data.frame is assigned to attribute vector
2015-04-14 13:58 edzer
* inst/ChangeLog: tidy
2015-04-13 17:38 edzer
* inst/ChangeLog: tidy
2015-04-13 17:35 edzer
* ChangeLog, inst/ChangeLog, inst/include/sp.h, src/sp.h,
src/sp.h.in: tidy
2015-04-13 17:34 edzer
* ChangeLog, inst/ChangeLog, inst/include/sp_xports.c,
src/sp_xports.c: tidy
2015-04-13 17:23 edzer
* ChangeLog, inst/ChangeLog: tidy
2015-04-13 17:19 edzer
* ChangeLog, inst/ChangeLog: tidy
2015-04-13 15:29 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-04-13 15:28 rsbivand
* .Rbuildignore, ChangeLog, build-prep.sh, svn2cl.xsl: move to
distributed svn2cl
2015-04-13 10:57 edzer
* inst/include/sp_xports.c, src/sp_xports.c: tidy
2015-04-13 08:00 rsbivand
* src/sp.h.in: add sp/src/sp.h.in
2015-04-13 07:49 edzer
* src/pip.c, src/pip2.c, src/sp_xports.c: add const qualifiers,
tidy sp_xports.c
2015-04-09 19:17 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-04-09 19:16 rsbivand
* .Rbuildignore, ChangeLog, DESCRIPTION, build-prep.sh,
inst/ChangeLog: tidy
2015-04-09 19:10 rsbivand
* .Rbuildignore: devel check issues (urls)
2015-04-09 19:07 rsbivand
* build-prep.sh, inst/include/sp.h, inst/include/sp_xports.c:
adding build-prep.sh
2015-04-09 17:09 rsbivand
* DESCRIPTION, man/meuse.Rd, man/panel.Rd, man/spDistsN1.Rd,
man/spplot.Rd: devel check issues (urls)
2015-04-09 13:17 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-04-09 13:16 rsbivand
* man/Spatial-class.Rd, man/SpatialLines-class.Rd,
man/SpatialPoints-class.Rd, man/SpatialPolygons-class.Rd:
document plot methods
2015-04-09 11:14 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2015-04-09 11:11 rsbivand
* DESCRIPTION, inst/include/sp.h, inst/include/sp_xports.c,
man/spplot.Rd, src/init.c, src/pip.c, src/pip2.c, src/sp.h,
src/sp_xports.c, tests/fail1.R, tests/fail1.Rout.save: duplicate
2015-04-08 19:19 rsbivand
* man/CRS-class.Rd, man/degaxis.Rd, man/is.projected.Rd,
man/nowrapSpatialLines.Rd, man/recenter-methods.Rd,
src/sp_xports.c: first cut duplicate and +ellps in man/*
2015-03-30 15:30 edzer
* man/spplot.Rd: add spplot example with floating legend
2015-03-30 07:50 edzer
* man/sp-deprecated.Rd: tidy; forgot overlay method definition
2015-03-30 07:39 edzer
* DESCRIPTION, R/Spatial-methods.R, R/overlay.R,
man/sp-deprecated.Rd: remove overlay method instances, keep
definition for raster
2015-03-28 11:53 edzer
* man/over.Rd, man/spplot.Rd: tidy examples
2015-03-27 23:18 edzer
* R/spplot.R, man/spplot.Rd: make `first' argument work again; add
examples of simpler sp.layout.
2015-03-22 19:54 edzer
* R/spplot.R: argument `first' was not passed; spotted by Josh
O'Brien
2015-03-20 08:13 edzer
* R/spplot.R: bug on plot order, reported by Josh O'Brien
2015-03-17 18:40 edzer
* R/bubble.R, demo/gallery.R: update sppanel usage
2015-03-17 18:16 edzer
* R/spplot.R: col specification for panel.polygonsplot, by Josh
O'Brien
2015-03-16 16:51 edzer
* man/spplot.Rd: typo
2015-03-15 15:04 edzer
* NAMESPACE, R/Spatial-methods.R, R/spplot.R, man/spplot.Rd:
refactor sp.layout argument; drop requirement to name function,
allow mixing Spatial* objects; introduce sppanel generic.
2015-03-15 11:38 edzer
* R/spplot.R, demo/depend.R: sp.lines now obeys col argument longer
than one, email from Josh O'Brien
2015-03-10 14:39 edzer
* demo/depend.R: change cran mirror
2015-03-09 20:54 edzer
* DESCRIPTION, R/SpatialPointsDataFrame-methods.R, R/overlay.R,
tests/fail1.Rout.save, tests/pass1.R, tests/pass1.Rout.save: add
back overlay; tidy SpatialPointsDataFrame(), add tests
2015-03-09 11:53 edzer
* R/SpatialPointsDataFrame-methods.R, man/SpatialPoints.Rd,
tests/fail1.Rout.save, tests/pass1.R, tests/pass1.Rout.save:
match.ID is now missing in SpatialPointsDataFrame(), a warning is
given if matching is applied but match.ID was not set; see the
examples in the docs.
2015-03-09 10:36 rsbivand
* DESCRIPTION: remove overlay.R from Collate
2015-03-09 10:20 edzer
* R/SpatialPointsDataFrame-methods.R, man/SpatialPoints.Rd:
match.ID defaults to TRUE if coords is not a data.frame,
otherwise FALSE (for backward compatibility)
2015-03-09 10:07 edzer
* DESCRIPTION, R/CRS-methods.R, R/Class-CRS.R,
R/Class-SpatialGrid.R, R/Class-SpatialGridDataFrame.R,
R/Class-SpatialPoints.R, R/Class-SpatialPointsDataFrame.R,
R/Spatial-methods.R, R/SpatialGridDataFrame-methods.R,
R/SpatialLines-methods.R, R/SpatialPoints-methods.R,
R/SpatialPointsDataFrame-methods.R, R/SpatialPolygons-methods.R,
R/rbind.R, R/subset.R, man/sp-deprecated.Rd, src/sp_xports.c,
tests/pass1.R, tests/pass1.Rout.save: improve coordinates() logic
to keep row.names of data.frame's
improve support for zero-feature objects (subset, rbind)
add rgdal check on CRS() if rgdal is installed, instead of loaded
have $<- promote a SpatialXxx to a SpatialXxxDataFrame
Version bump to 1.1-0
2015-03-05 23:58 edzer
* NAMESPACE: remove duplicated gridat
2015-03-02 17:30 edzer
* vignettes/over.Rnw: update `over' vignette
2015-03-02 15:04 edzer
* vignettes/over.Rnw: update
2015-03-02 12:57 edzer
* R/over.R, man/over.Rd: call `over' methods in rgeos automatically
2015-03-02 11:19 edzer
* R/CRS-methods.R, R/Spatial-methods.R, man/spTransform.Rd,
tests/fail1.Rout.save: load rgdal namespace when needed for
spTransform, clean up methods
2015-03-02 10:21 edzer
* R/Spatial-methods.R, man/Spatial-class.Rd: allow $<- on
geometry-only objects, promoting them to *DataFrame
2015-02-26 21:00 edzer
* DESCRIPTION, R/overlay.R, R/projected.R, R/spsample.R,
man/is.projected.Rd, man/sp-deprecated.Rd: remove overlay()
methods altogether, leaving generic for raster
tidy & clean projected.R
add warning to spsample.SpatialLines when data are longlat
2015-02-20 14:36 rsbivand
* DESCRIPTION: add sp contributors
2015-02-19 21:14 edzer
* R/SpatialGrid-methods.R: further optimize of plot.SpatialPixels
2015-02-19 17:25 edzer
* R/SpatialGrid-methods.R, man/SpatialPixels-class.Rd: reduce
number of segments() calls to inprove performance
2015-02-19 15:57 edzer
* .Rbuildignore, R/SpatialGrid-methods.R,
man/SpatialPixels-class.Rd: plotting SpatialGrid or SpatialPixels
now plots a grid, unless grid = FALSE
2015-02-19 14:05 edzer
* DESCRIPTION, R/Class-CRS.R, R/Class-GridTopology.R,
R/Class-Spatial.R, R/Class-SpatialGrid.R,
R/Class-SpatialGridDataFrame.R, R/Class-SpatialLines.R,
R/Class-SpatialLinesDataFrame.R, R/Class-SpatialPoints.R,
R/Class-SpatialPointsDataFrame.R, R/Class-SpatialPolygons.R,
R/Class-SpatialPolygonsDataFrame.R, R/SpatialGrid-methods.R,
man/over.Rd: increase dependency on R >= 3.0.0, replace
representation by slots;
remove prototypes from class definitions
2015-01-24 18:54 edzer
* man/addattr.Rd, man/over.Rd, man/spsample.Rd: cleanup references
to overlay
2015-01-23 21:15 edzer
* man/SpatialPoints.Rd: correct docs regarding what match.ID
exactly does
2015-01-22 12:27 edzer
* R/SpatialPoints-methods.R, R/spsample.R, man/spsample.Rd,
tests/grid.Rout.save: fix SpatialPointsDataFrame match.ID issue,
raised in
https://stat.ethz.ch/pipermail/r-sig-geo/2015-January/022242.html;
fix makegrid bug in case of negative bbox
2015-01-19 20:36 edzer
* R/spplot.R: sp.panel.layout is now also called after the points
are plotted
2015-01-18 22:17 edzer
* DESCRIPTION, R/spplot.R, man/spplot.Rd: bump version; allow list
for colorkey argument in spplot
2015-01-15 12:10 edzer
* DESCRIPTION: Title Case Title
2014-12-23 19:56 edzer
* inst/ChangeLog, man/meuse.riv.Rd: add plot to example
2014-12-23 14:57 edzer
* data/meuse.area.rda, demo/meuse.R, man/meuse.riv.Rd: add
meuse.area outline of meuse.grid
2014-12-05 14:52 edzer
* R/over.R: add comment
2014-12-05 14:51 edzer
* R/SpatialPoints-methods.R, R/SpatialPointsDataFrame-methods.R:
add error messages when NA values occur in SpatialPoints objects
2014-11-17 14:32 edzer
* R/merge.R: y -> dy
2014-11-16 19:12 edzer
* DESCRIPTION, R/merge.R, man/merge.Rd: add duplicateGeoms argument
to merge(), add Robert as ctb
2014-11-09 11:21 edzer
* R/CRS-methods.R, R/disaggregate.R, inst/ChangeLog: release
candidate 1.0-16
2014-11-09 10:45 edzer
* inst/ChangeLog: ready for release
2014-09-23 19:59 edzer
* R/aggregate.R: add call to match.fun()
2014-09-20 14:11 edzer
* tests/sel.Rout.save: named results: make test align with change
in over
2014-09-19 20:28 edzer
* R/over.R, vignettes/over.Rnw: the output list or vector of over()
is now named
2014-08-31 11:16 edzer
* R/Spatial-methods.R, R/SpatialLines-methods.R,
R/SpatialPoints-methods.R, R/image.R: plot now accepts more of
plot.default's behaviour
2014-08-22 22:07 edzer
* R/aggregate.R, R/disaggregate.R, R/sp_spat1.R: moved require(xx);
foo() into requireNamespace(xx) xx:foo() calls,
see
http://cran.r-project.org/doc/manuals/r-patched/R-exts.html#Suggested-packages
2014-08-10 19:07 edzer
* R/zerodist.R, inst/ChangeLog, man/zerodist.Rd, src/init.c,
src/sp.h, src/zerodist.c: add memcmp option to zerodist() family,
to allow for double arithmetic fall back
2014-06-30 09:15 edzer
* DESCRIPTION, NAMESPACE, R/AAA.R, R/bubble.R, R/spOptions.R,
R/spplot.R, R/zerodist.R, man/aggregate.Rd, man/bubble.Rd,
man/spplot.Rd, src/zerodist.c, tests/Examples: zerodist now uses
memcmp if comparison against 0.0
spplot now used bpy.colors() as default; set_col_regions()
can override this default. bubble() now uses more sane red/green
values (from colorbrewer) when neg and pos residuals are shown.
2014-06-13 16:14 edzer
* R/SpatialLines-methods.R: suggestion by Stephane Dray, by email
2014-06-08 19:12 edzer
* R/SpatialGridDataFrame-methods.R, tests/spplot.Rout.save: remove
needles recomputation of grid layout, and subsequenc warning in
spplot test
2014-06-05 13:05 edzer
* R/rbind.R: tidy
2014-05-25 21:33 edzer
* R/aggregate.R: added aggregate-on-attribute case for SpatialLines
2014-05-25 16:49 edzer
* R/aggregate.R, man/aggregate.Rd: remove argument simplify,
correct dissolve=FALSE
2014-05-24 07:22 edzer
* R/aggregate.R, man/aggregate.Rd: add factor criteria for
aggregate() with attributes as aggregation predicate
2014-05-23 23:01 edzer
* DESCRIPTION, R/aggregate.R, R/over.R, man/aggregate.Rd,
man/over.Rd: split aggregate from over; add aggregation based on
attribute values
2014-04-18 17:24 edzer
* man/disaggregate.Rd: improve example code
2014-04-16 14:18 edzer
* R/SpatialGrid-methods.R, R/SpatialGridDataFrame-methods.R,
R/spplot.R: bug report on r-sig-geo, when spplot'ing a grid with
a single non-NA cell
2014-04-06 17:05 rsbivand
* DESCRIPTION, inst/include/sp_xports.c, src/sp_xports.c: close
ring in Polygon
2014-04-03 09:02 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2014-04-02 12:15 edzer
* DESCRIPTION, R/Spatial-methods.R: pass on ... to print() calls
2014-03-24 15:27 edzer
* R/SpatialLinesDataFrame-methods.R,
R/SpatialPointsDataFrame-methods.R: print methods: pass on digits
argument to print.data.frame
2014-03-01 15:49 rsbivand
* R/CRS-methods.R: tightening CRS NA
2014-03-01 15:07 edzer
* R/CRS-methods.R: simplified CRS(), now accepting
CRS(as.logical(NA)), reported by Robert Hijmans
2014-02-22 15:56 edzer
* R/spsample.R: quick hack to regular sampling bug reported by
Robert, not finished.
2014-02-16 17:45 edzer
* R/spsample.R: take right cellsize for correcting min.coords
2014-01-27 20:01 edzer
* NAMESPACE, R/image.R, man/image.Rd: add imageScale (from
image.scale, r-bloggers)
2014-01-27 16:46 edzer
* R/spsample.R, man/spsample.Rd: repair makegrid when cellsize is
given, modify docs
2014-01-25 19:23 edzer
* R/rbind.R, R/zerodist.R, man/as.SpatialPolygons.GridTopology.Rd,
src/zerodist.c, tests/Examples/sp-Ex.Rout.save,
tests/zerodist.Rout.save: move example to \dontrun{}, took too
long;
optimize zerodist(..., match.ID=TRUE) further;
remove warning in rbind
2014-01-25 17:40 edzer
* DESCRIPTION, NAMESPACE, R/rbind.R, R/zerodist.R, man/zerodist.Rd,
src/init.c, src/sp.h, src/zerodist.c: zerodist(...,
unique.ID=TRUE) is now efficient and will no longer create
all identical pairs.
2014-01-09 16:51 edzer
* R/disaggregate.R, R/rbind.R: added makeUniqueIDs to
rbind.SpatialPolygonsDataFrame
disaggregate.R: patch from Robert Hijmans
2014-01-05 23:08 edzer
* R/Class-SpatialPoints.R, R/Class-SpatialPointsDataFrame.R,
R/SpatialPoints-methods.R, R/SpatialPointsDataFrame-methods.R:
remove useless, outdated and wrong comments
2014-01-05 22:59 edzer
* R/SpatialGrid-methods.R: remove historic, useless and wrong
comments