-
Notifications
You must be signed in to change notification settings - Fork 27
/
oChangeLog
3775 lines (2465 loc) · 108 KB
/
oChangeLog
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-01-16 13:54 rsbivand
* man/spDistsN1.Rd: clarify longlat in spDistsN1.Rd
2010-12-19 13:09 edzer
* inst/: ChangeLog, doc/over.Rnw: added example
2010-12-18 17:19 edzer
* inst/doc/over.Rnw: made over pass R < 2.12
2010-12-18 17:06 edzer
* DESCRIPTION: version bump
2010-12-18 17:06 edzer
* NAMESPACE, R/SpatialGridDataFrame-methods.R,
R/SpatialLinesDataFrame-methods.R,
R/SpatialPointsDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R: added length method for
Spatial*DataFrame objects
2010-12-18 16:51 edzer
* R/image.R: changed max = 255 into maxColorValue = 255, avoiding
partial argument matching
2010-12-15 18:10 edzer
* R/spplot.R: patch to r-sig-geo of Dylan Beaudette, 15 dec 2011
2010-12-13 22:09 edzer
* man/over.Rd: removed restriction to non-overlapping polygons from
docs.
2010-12-12 22:52 edzer
* DESCRIPTION, NAMESPACE, R/SpatialGrid-methods.R,
R/SpatialGridDataFrame-methods.R, R/SpatialLines-methods.R,
R/SpatialLinesDataFrame-methods.R, R/SpatialPoints-methods.R,
R/SpatialPointsDataFrame-methods.R, R/SpatialPolygons-methods.R,
R/SpatialPolygonsDataFrame-methods.R, R/over.R,
inst/doc/over.Rnw, man/over.Rd, tests/sel.R, tests/sel.Rout.save:
version update; take aggregate from stats namespace; spatial
objects in selections like points[polygon,] now also work for
Spatial*DataFrame as selection criterion (taking the geometry of
it); removed the returnList=TRUE option for those "over" methods
that do not (yet) support it (triggers error). Changed vignette
and tests accordingly.
2010-11-29 20:11 edzer
* NAMESPACE: corrected inportFrom into importFrom
2010-11-22 21:47 edzer
* R/over.R, man/SpatialGrid-class.Rd,
man/SpatialGridDataFrame-class.Rd, man/over.Rd: small mistakes in
code/docs to make sp pass check;
2010-11-22 21:23 edzer
* DESCRIPTION, NAMESPACE, R/Spatial-methods.R,
R/SpatialGrid-methods.R, R/SpatialGridDataFrame-methods.R,
R/over.R, inst/doc/over.Rnw: added aggregate method; added
coercion from SpatialGrid* to SpatialPolygon*; version bump;
added second vignette
2010-11-22 12:38 edzer
* DESCRIPTION, NAMESPACE, R/Spatial-methods.R,
R/SpatialGridDataFrame-methods.R,
R/SpatialLinesDataFrame-methods.R,
R/SpatialPointsDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R, R/zerodist.R,
man/addattr.Rd, man/over.Rd, tests/sel.R, tests/sel.Rout.save:
added addAttrToGeom method to create a SpatialXxxDataFrame from a
SpatialXxx object and a data.frame, with instances for each
SpatialXxx.
2010-11-18 22:36 edzer
* R/over.R: removed the full matrix need in .invert
2010-11-15 23:53 edzer
* R/: over.R, point.in.polygon.R: modified some of the over and
pointInPol functions to catch the case where more than one
polygon coves a point (think package cshapes)
2010-11-13 20:43 edzer
* man/geometry-methods.Rd: forgot to add & commit the docs for the
geometry method, mentioned in the previous commit.
2010-11-13 20:37 edzer
* DESCRIPTION, NAMESPACE, R/Spatial-methods.R,
R/SpatialGrid-methods.R, R/SpatialLines-methods.R,
R/SpatialLinesDataFrame-methods.R, R/SpatialPoints-methods.R,
R/SpatialPointsDataFrame-methods.R, R/SpatialPolygons-methods.R,
R/SpatialPolygonsDataFrame-methods.R, R/over.R,
man/SpatialLines.Rd, man/SpatialPoints.Rd,
man/SpatialPolygons.Rd, man/over.Rd, tests/sel.R,
tests/sel.Rout.save: match.ID in SpatialXxxDataFrame() now can be
character, in which case the corresponding column in the
data.frame is used;
A generic geometry() converts a SpatialXxxDataFrame into a
SpatialXxx.
A generic over() provides a better overlay then overlay -- it is
consistent in that over(x,y) provides characteristics of y on
spatial locations of x -- I didn't modify overlay() as too many
instances (including the book) rely on its inconsistency.
Selection of objects can now be done by spatial objects: x[y]
returns the polygons x covered by points y, or the points x
inside polygons y, etc.
Related to this: x[x$dist < 30,] would work for
SpatialPixelsDataFrame but fail for SpatialGridDataFrame -- it
now works; any i-selector (first, with ,) longer than the number
of rows selects the cells. Selecting cells means essentially that
de-selected cells get assigned NA (!).
a names methods for SpatialPolygons was added.
2010-11-08 22:26 edzer
* R/overlay.R: reverted overlay changes back to 0.9-72 state.
2010-11-08 18:27 edzer
* NAMESPACE, R/Spatial-methods.R, R/SpatialGridDataFrame-methods.R,
R/SpatialLinesDataFrame-methods.R,
R/SpatialPointsDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R: added a geometry generic
and method, that returns the coercion to a Spatial* object from a
Spatial*DataFrame object.
2010-11-08 13:56 edzer
* man/overlay-methods.Rd: docs pass check
2010-11-08 13:34 edzer
* R/: SpatialPoints-methods.R, SpatialPolygons-methods.R,
overlay.R: modified (corrected?) overlay methods; see post on
r-spatial-devel; added selection with Spatial object to
SpatialPolygons objects.
2010-11-06 11:40 edzer
* DESCRIPTION, R/SpatialGrid-methods.R,
R/SpatialGridDataFrame-methods.R, R/SpatialPoints-methods.R,
R/SpatialPointsDataFrame-methods.R, man/SpatialGrid.Rd: extended
"[" method for these classes to allow the first argument that is
of class "Spatial"; in that case, the selection will be those
items that do not result in an NA when overlaied with the object.
for SpatialGridDataFrame, I now allow the first index to be of
length nrow(x@data), meaning that cell-by-cell selection takes
place instead of row-based.
2010-10-31 14:01 edzer
* R/image.R: added ,drop=FALSE to as.image function, for the case
of single row or col grids
2010-10-25 20:29 rsbivand
* DESCRIPTION, R/GridTopology-methods.R: added extra check to
points2grid
2010-10-19 12:08 edzer
* DESCRIPTION: version update; changed comment
2010-10-15 20:25 edzer
* R/spdists.R: spDists now returns always matrix, also in case of
dim 1 x 1
2010-10-11 10:46 edzer
* DESCRIPTION, NAMESPACE: version update; added import(lattice) to
decrease R version depency to 2.10.0
2010-10-11 10:37 edzer
* DESCRIPTION, demo/gallery.R: version update; gallery update
2010-10-08 17:09 edzer
* R/spplot.R: update sp.layout in spplot of polygons, to work just
as with grids.
2010-10-04 20:21 edzer
* DESCRIPTION: version update; expanded Suggest: field with rgdal
and lattice
2010-09-28 21:29 edzer
* man/spplot.Rd: corrected help for cuts argument
2010-09-20 16:12 edzer
* DESCRIPTION: updated version
2010-09-20 16:12 edzer
* DESCRIPTION: updated date
2010-09-20 08:22 rsbivand
* ChangeLog, NAMESPACE, tests/fail1.Rout.save, inst/ChangeLog: test
save
2010-09-19 21:16 edzer
* R/Spatial-methods.R, R/SpatialGrid-methods.R,
R/SpatialPoints-methods.R, R/projected.R, man/is.projected.Rd:
row.names no longer returns NULL for points and pixels.
is.projected, proj4string and proj4string<- are now S4 generics
2010-09-16 22:13 edzer
* NAMESPACE, R/SpatialGrid-methods.R,
R/SpatialGridDataFrame-methods.R, R/spplot.R, man/zerodist.Rd:
added row.names methods for SpatialGrid and SpatialGridDataFrame;
cleaned up levelplot panel and opan stuff; zerodist was not
touched afaics
2010-08-28 16:24 rsbivand
* R/SpatialPolygons-internals.R, R/spdists.R, R/surfaceArea.R,
ChangeLog, inst/ChangeLog: as.double to storage.mode
2010-08-04 15:51 rsbivand
* DESCRIPTION, R/image.R, man/image.Rd, ChangeLog, inst/ChangeLog:
rasterImage SDI detection
2010-08-03 14:13 rsbivand
* R/image.R, man/image.Rd: rasterImage fix for transparency and
single unique value rasters
2010-08-02 18:39 rsbivand
* DESCRIPTION, R/image.R: rasterImage fix for transparency and
single unique value rasters
2010-07-29 00:30 edzer
* man/: Line.Rd, Lines-class.Rd, SpatialLines-class.Rd: extended ID
documentation; added examples; suggestion Michael Friendly on
r-sig-geo
2010-07-19 21:07 rsbivand
* DESCRIPTION, NAMESPACE, R/SpatialPolygons-displayMethods.R,
R/spplot.R: including polypath from graphics if available, and
panel.levelplot.raster
2010-07-16 16:07 rsbivand
* R/point.in.polygon.R, R/spsample.R, ChangeLog, inst/ChangeLog:
two changes: pointsInPolygons and sample.Polygons hole logic
2010-07-14 16:30 rsbivand
* R/SpatialLines-methods.R, man/Line.Rd, man/nowrapSpatialLines.Rd,
man/recenter-methods.Rd, ChangeLog, inst/ChangeLog: coerce ID to
character in Lines
2010-07-12 21:59 rsbivand
* ChangeLog, inst/ChangeLog: tidy
2010-07-07 23:41 edzer
* DESCRIPTION: increased version number.
2010-07-07 23:40 edzer
* NAMESPACE: added length() S3 methods
2010-07-07 23:39 edzer
* R/: SpatialGrid-methods.R, SpatialLinesDataFrame-methods.R,
SpatialPoints-methods.R, SpatialPointsDataFrame-methods.R,
SpatialPolygons-methods.R: added length() methods for Spatial
objects; small improvements to the asWKT printing.
2010-07-07 16:02 mdsumner
* R/SpatialLines-methods.R: more consistent handling of lwd and lty
arguments passed to lines() by plotSpatialLines - multiple values
for each are now recycled as necessary
also added arguments lend, ljoin and lmitre for lines()
2010-07-06 18:06 edzer
* R/SpatialLines-methods.R: changed the col recycling in
plot.SpatialLines; suggestion by Michael Sumner on
r-spatial-devel mailing list
2010-06-23 14:24 rsbivand
* ChangeLog, inst/ChangeLog, DESCRIPTION: tidy
2010-06-23 13:45 edzer
* R/spplot.R: solved the spplot factor key issue mentioned in
https://stat.ethz.ch/pipermail/r-sig-geo/2010-June/008586.html
2010-06-22 08:52 edzer
* R/spplot.R: spplot(meuse, scales = list(x = list(draw = TRUE)))
now works.
2010-06-21 09:32 rsbivand
* DESCRIPTION, R/image.R: checks in image2Grid
2010-06-12 06:19 rsbivand
* R/spplot.R: warning in spplot for points
2010-06-07 13:06 edzer
* R/SpatialGrid-methods.R: removed the setAs("SpatialGrid",
"SpatialPoints", ...) coercion, as it breaks csdacm.R of the
ASDAR book.
2010-06-05 18:11 rsbivand
* man/SpatialGrid-class.Rd: r1/2 to x/y in SL bbox
2010-06-05 18:04 rsbivand
* R/Class-SpatialLines.R, R/SpatialLines-methods.R,
R/SpatialPolygons-methods.R, tests/pass1.Rout.save: r1/2 to x/y
in SL bbox
2010-05-27 15:23 edzer
* R/: SpatialGrid-methods.R, SpatialPoints-methods.R,
SpatialPointsDataFrame-methods.R: added (optional) printing using
WKT encodings; added coercion from SpatialGrid to SpatialPoints.
2010-05-27 14:48 edzer
* R/SpatialPointsDataFrame-methods.R: added x@ in
"[.SpatialPointDataFrame", such that coords.nrs get properly
reset by column selection
2010-05-17 12:41 rsbivand
* DESCRIPTION, R/image.R, man/image.Rd, ChangeLog, inst/ChangeLog:
use rasterImage where available
2010-05-06 16:19 rsbivand
* DESCRIPTION, R/image.R, man/image.Rd, ChangeLog, inst/ChangeLog:
adding rasterImage support
2010-04-26 12:30 edzer
* R/zerodist.R, man/zerodist.Rd: remove.duplicates now returns the
complete object if no duplicates were found; suggested in
https://stat.ethz.ch/pipermail/r-sig-geo/2010-April/008121.html.
2010-04-26 10:34 rsbivand
* R/image.R: tidy
2010-04-19 08:19 edzer
* DESCRIPTION, R/SpatialGridDataFrame-methods.R,
tests/fail1.Rout.save, tests/spplot.Rout.save: "[" for
SpatialPixelsDataFrame is now copied from SpatialPointsDataFrame;
this was needed to get split.data.frame working for
SpatialPixelsDataFrame.
2010-04-18 19:35 edzer
* R/SpatialGridDataFrame-methods.R: allow usin gdrop argument in [,
as split.data.frame will pass it.
2010-04-17 23:53 edzer
* NAMESPACE, R/Spatial-methods.R, R/SpatialGridDataFrame-methods.R,
R/SpatialLinesDataFrame-methods.R,
R/SpatialPointsDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R: added split (S4) methods
for SpatialXxxDataFrame objects (except SpatialGridDataFrame).
Suggested by Michael Sumner, r-sig-geo, Apr 17 2010
2010-04-17 21:38 rsbivand
* INDEX: ringDir bug
2010-04-17 21:11 rsbivand
* ChangeLog, inst/ChangeLog: ringDir bug
2010-04-17 21:06 rsbivand
* DESCRIPTION, R/rbind.R, inst/include/sp_xports.c,
man/SpatialPolygons.Rd, src/sp_xports.c: ringDir bug
2010-04-17 14:39 edzer
* R/rbind.R: set names of arguments to NULL; but report by Clement
Calenge
2010-04-16 15:29 edzer
* DESCRIPTION, NAMESPACE, R/Spatial-methods.R, R/surfaceArea.R,
man/surfaceArea.Rd, src/init.c, src/sp.h, src/surfaceArea.c:
added surfaceArea method, R and C function and docs, contributed
by Barry Rowlingson
2010-03-09 08:16 rsbivand
* DESCRIPTION, ChangeLog, inst/ChangeLog: anyDuplicated requires R
>= 2.9.1
2010-02-14 21:05 rsbivand
* ChangeLog, inst/ChangeLog: modified instantiation of
SpatialPolygonsDataFrame objects
2010-02-14 20:59 rsbivand
* DESCRIPTION, R/SpatialPolygonsDataFrame-methods.R: modified
instantiation of SpatialPolygonsDataFrame objects
2010-02-13 22:49 edzer
* man/: meuse.Rd, meuse.grid.Rd: two small typos
2010-02-13 22:44 edzer
* man/: meuse.Rd, meuse.grid.Rd: description improvements by David
Rossiter
2010-02-11 08:20 rsbivand
* DESCRIPTION, INDEX, R/SpatialGrid-methods.R,
R/SpatialGridDataFrame-methods.R, src/gcdist.c, ChangeLog,
inst/ChangeLog: bug fix for spDistsN1 for 0 latitude, longat=TRUE
2010-02-04 11:52 edzer
* DESCRIPTION, R/compassRose.R, R/loadmeuse.R, man/compassRose.Rd:
added compass rose from Jim Lemon (see r-sig-geo)
2010-02-03 17:02 edzer
* man/spplot.Rd: added panel.identify link to seealso in spplot doc
2010-02-03 16:32 edzer
* R/spplot.R: spplot.locator gave a bug when a single point was
clicked
2010-02-01 16:17 edzer
* DESCRIPTION, INDEX, NAMESPACE, R/loadmeuse.R, man/loadmeuse.Rd:
functions that loads meuse and meuse.grid to the global env, and
converts them to the appropriate Spatial* structures.
2010-01-27 21:01 rsbivand
* inst/include/sp_xports.c, man/Polygons-class.Rd, src/sp_xports.c:
more hole fixing
2010-01-27 20:32 rsbivand
* DESCRIPTION, inst/include/sp_xports.c, src/sp_xports.c: more hole
fixing
2010-01-26 20:53 rsbivand
* man/spsample.Rd, ChangeLog, inst/ChangeLog: change non-ASCII
hyphen in man file
2010-01-26 19:04 rsbivand
* ChangeLog, inst/ChangeLog: hole logic fix; thanks to Javier Munoz
for report
2010-01-26 19:01 rsbivand
* DESCRIPTION, R/SpatialPolygons-methods.R,
inst/include/sp_xports.c, src/sp_xports.c: hole logic fix; thanks
to Javier Munoz for report
2010-01-26 09:36 edzer
* R/spplot.R: corrected bug in spplot for points, when zcol was a
numeric array; bug reported by Robert Hijmans.
2010-01-17 17:22 edzer
* DESCRIPTION, inst/doc/sp.Rnw: more middle initials removed from
author name
2010-01-17 17:21 edzer
* man/: GridTopology-class.Rd, Spatial-class.Rd,
SpatialGrid-class.Rd, SpatialGrid.Rd,
SpatialGridDataFrame-class.Rd, SpatialGridDataFrame.Rd,
SpatialPixels-class.Rd, SpatialPixelsDataFrame-class.Rd,
SpatialPoints-class.Rd, SpatialPointsDataFrame-class.Rd,
asciigrid.Rd, bpy.colors.Rd, bubble.Rd, gridlines.Rd, image.Rd,
is.projected.Rd, meuse.Rd, overlay-methods.Rd, panel.Rd,
spplot.Rd: removed middle initial in author name
2010-01-17 17:14 edzer
* R/spsample.R, man/spsample.Rd: added Fibonacci sampling on a
sphere; see reference in spsample documentation.
2010-01-17 17:08 edzer
* demo/: 00Index, fib.R: added demo script for Fibonacci sampling
on the sphere
2010-01-14 14:43 rsbivand
* src/gcdist.c, ChangeLog, inst/ChangeLog: 0/360 longlat GC
distance
2010-01-13 22:38 edzer
* tests/: fail1.Rout.save, grid.Rout.save: consequence of earlier
typo correction
2010-01-12 13:08 edzer
* R/GridTopology-methods.R, R/spdists.R, man/spDistsN1.Rd: mostly
cosmetic updates.
2010-01-09 11:21 rsbivand
* DESCRIPTION, R/SpatialPolygonsDataFrame-methods.R, ChangeLog,
inst/ChangeLog: SpatialPolygonsDataFrame [ speedup
2010-01-08 14:38 rsbivand
* ChangeLog, inst/ChangeLog: identical points fix for sp_lengths
2010-01-08 14:31 rsbivand
* R/SpatialGrid-methods.R, R/SpatialPoints-methods.R, src/gcdist.c:
identical points fix for sp_lengths
2010-01-07 19:08 rsbivand
* ChangeLog, inst/ChangeLog: added centroid protection
2010-01-07 13:07 rsbivand
* DESCRIPTION, inst/include/sp_xports.c, src/sp_xports.c: added
centroid protection
2009-12-18 22:53 rsbivand
* man/: SpatialLines-class.Rd, SpatialLinesDataFrame-class.Rd,
SpatialPixels-class.Rd, SpatialPixelsDataFrame-class.Rd,
SpatialPoints-class.Rd, SpatialPointsDataFrame-class.Rd,
SpatialPolygons-class.Rd, SpatialPolygonsDataFrame-class.Rd:
rbind documentation improvements
2009-12-18 10:32 rsbivand
* inst/include/sp_xports.c, src/sp_xports.c, DESCRIPTION,
ChangeLog, inst/ChangeLog: handling infinite label point for
defect polygons
2009-12-17 20:13 rsbivand
* inst/include/sp_xports.c, src/sp_xports.c: adding C API files for
*Polygon* classes
2009-12-17 18:38 rsbivand
* DESCRIPTION, R/Class-SpatialPolygons.R, R/GridTopology-methods.R,
R/SpatialGrid-methods.R, R/SpatialPolygons-methods.R,
R/SpatialPolygonsDataFrame-methods.R, R/chfids.R, R/recenter.R,
R/spsample.R, inst/include/sp.h, inst/include/sp_xports.c,
man/spChFIDs-methods.Rd, src/Rcentroid.c, src/init.c, src/sp.h,
src/sp_xports.c, tests/fail1.Rout.save, tests/pass1.Rout.save,
ChangeLog, inst/ChangeLog: adding C API files for *Polygon*
classes
2009-12-14 09:41 edzer
* tests/: spDists.R, spDists.Rout.save: added test on reversed
arguments
2009-12-14 09:31 edzer
* tests/spDists.Rout.save: spDists test output
2009-12-11 17:30 edzer
* DESCRIPTION: version bump
2009-12-11 17:21 edzer
* DESCRIPTION, NAMESPACE, R/spdists.R, man/spDistsN1.Rd,
tests/spDists.R: added the spDists function that wraps (for 2D
data) spDistsN1, and returns the distance matrix between two sets
of coordinates.
2009-12-06 12:00 rsbivand
* DESCRIPTION, tests/fail1.Rout.save, ChangeLog, inst/ChangeLog: S4
tidying
2009-12-04 18:43 rsbivand
* DESCRIPTION, R/Spatial-methods.R, ChangeLog, inst/ChangeLog:
signature of S4 methods compliance
2009-12-04 18:32 edzer
* INDEX, R/Spatial-methods.R, man/Spatial-class.Rd: change to $ and
$<- signatures; should not break functionality needed to pass
check on R base svn r50609
2009-12-03 13:14 rsbivand
* DESCRIPTION, R/chfids.R, ChangeLog, inst/ChangeLog: spChFIDs
speed-up in R
2009-11-20 10:43 edzer
* DESCRIPTION: date update
2009-11-19 21:08 rsbivand
* DESCRIPTION, NAMESPACE, ChangeLog, inst/ChangeLog: docs linkage
problems from maptools
2009-11-19 14:25 edzer
* R/Spatial-methods.R, man/coordinates.Rd: added ... to arguments
of coordinates method; request from [email protected] on
r-sig-geo, Nov 19, 2009.
2009-11-05 17:34 edzer
* DESCRIPTION, INDEX, NAMESPACE, R/Spatial-methods.R,
R/SpatialLines-methods.R, R/SpatialLinesDataFrame-methods.R,
R/SpatialPoints-methods.R, R/SpatialPointsDataFrame-methods.R,
R/SpatialPolygons-methods.R,
R/SpatialPolygonsDataFrame-methods.R, R/chfids.R,
man/spChFIDs-methods.Rd: version update; added row.names<-
methods for points, lines and polygons; moved all the spChFIDs
methods, functions and docs from maptools to sp for this.
2009-11-03 09:29 edzer
* DESCRIPTION, NAMESPACE, R/flipSGDF.R, man/flip.Rd: added
flipHorizontal/flipVertical contributions on r-sig-geo from
Michael Sumner
2009-11-03 09:21 edzer
* man/: bubble.Rd, gridded-methods.Rd, stack.Rd: removed more wrong
references to SpatialDataFrame
2009-11-03 09:20 edzer
* man/stack.Rd: removed reference to SpatialDataFrame
2009-10-22 11:17 rsbivand
* DESCRIPTION, R/SpatialPolygonsDataFrame-methods.R: allow negative
integer selection of SPolDF
2009-09-30 16:46 edzer
* inst/CITATION: added asdar book as citation.
2009-09-24 12:57 rsbivand
* R/image.R, man/image.Rd, ChangeLog, inst/ChangeLog: bug fix
image2Grid
2009-09-22 18:02 rsbivand
* DESCRIPTION, R/spplot.R, ChangeLog, inst/ChangeLog: adding
auto.key to fill.call.groups()
2009-09-17 10:35 rsbivand
* DESCRIPTION, man/SpatialPointsDataFrame-class.Rd, man/spplot.Rd,
ChangeLog, inst/ChangeLog: fix documentation links
2009-08-24 15:23 edzer
* inst/doc/sp.Rnw: changed project into spTransform and made the
example more realistic; removed spproj reference.
2009-08-24 15:13 edzer
* inst/doc/sp.Rnw: updated affiliation Edzer; removed any
references to AttributeLists.
2009-07-19 15:22 rsbivand
* ChangeLog, DESCRIPTION, R/SpatialPointsDataFrame-methods.R,
inst/ChangeLog, man/CRS-class.Rd, man/DMS-class.Rd,
man/GridTopology-class.Rd, man/SpatialGridDataFrame-class.Rd,
man/SpatialLines-class.Rd, man/SpatialPixelsDataFrame-class.Rd,
man/SpatialPointsDataFrame-class.Rd,
man/SpatialPolygons-class.Rd, man/coordinates-methods.Rd: RD2
2.10.0 tidy
2009-07-09 23:08 rsbivand
* ChangeLog, R/Class-Spatial.R, inst/ChangeLog,
man/Spatial-class.Rd, man/is.projected.Rd, DESCRIPTION: change
defunct spproj references to rgdal
2009-07-09 14:03 rsbivand
* DESCRIPTION, R/spdists.R, man/spDistsN1.Rd: adding SpatialPoints*
to spDistsN1
2009-07-08 12:38 rsbivand
* ChangeLog, inst/ChangeLog: added row.names methods and [ on
character
2009-07-08 12:33 rsbivand
* DESCRIPTION, NAMESPACE, R/SpatialLines-methods.R,
R/SpatialLinesDataFrame-methods.R, R/SpatialPoints-methods.R,
R/SpatialPointsDataFrame-methods.R, R/SpatialPolygons-methods.R,
R/SpatialPolygonsDataFrame-methods.R, man/SpatialLines-class.Rd,
man/SpatialLinesDataFrame-class.Rd, man/SpatialPoints-class.Rd,
man/SpatialPointsDataFrame-class.Rd,
man/SpatialPolygons-class.Rd,
man/SpatialPolygonsDataFrame-class.Rd: added row.names methods
and [ on character
2009-07-07 12:02 rsbivand
* R/SpatialLines-methods.R, R/spsample.R, man/SpatialLines.Rd:
sample for line objects fixes
2009-07-06 15:45 rsbivand
* ChangeLog, DESCRIPTION, R/spsample.R, inst/ChangeLog,
man/spsample.Rd: sample for line objects fixes
2009-07-05 15:34 rsbivand
* DESCRIPTION, R/SpatialLines-methods.R, R/spsample.R,
man/SpatialLines.Rd, src/gcdist.c, src/init.c, src/sp.h: zero
length line issue in spsample
2009-05-28 15:00 edzer
* R/image.R, man/image.Rd: added attr=1 argument to
as.image.SpatialGridDataFrame
2009-05-28 08:09 edzer
* DESCRIPTION, tests/fail1.Rout.save, tests/spplot.Rout.save:
version update; minor test output changes
2009-05-27 22:39 edzer
* R/SpatialGridDataFrame-methods.R: change request by BDR,
involving named arguments in [.data.frame
2009-04-29 13:37 rsbivand
* DESCRIPTION, R/spdists.R, ChangeLog, inst/ChangeLog: typos in
spDistsN1 messages
2009-04-23 13:06 rsbivand
* NAMESPACE, ChangeLog, inst/ChangeLog: adding dim for remaining
Spatial*DataFrame classes
2009-04-23 12:57 rsbivand
* DESCRIPTION, R/SpatialGridDataFrame-methods.R,
R/SpatialLinesDataFrame-methods.R,
R/SpatialPolygonsDataFrame-methods.R,
man/SpatialGridDataFrame-class.Rd,
man/SpatialLinesDataFrame-class.Rd,
man/SpatialPixelsDataFrame-class.Rd,
man/SpatialPolygonsDataFrame-class.Rd: adding dim for remaining
Spatial*DataFrame classes
2009-03-31 14:12 rsbivand
* DESCRIPTION, R/overlay.R, ChangeLog, inst/ChangeLog: overlay
points on grid rownames problem
2009-03-05 10:54 edzer
* man/mapasp.Rd: missing bracket
2009-02-26 18:03 rsbivand
* ChangeLog, inst/ChangeLog: spsample and gridded polygons
2009-02-26 17:33 rsbivand
* R/spsample.R: spsample and gridded polygons
2009-02-26 12:59 rsbivand
* DESCRIPTION, R/spsample.R: spsample and gridded polygons
2009-02-20 12:02 edzer
* R/zerodist.R, tests/zerodist.R, tests/zerodist.Rout.save:
zerodist test includes unique.ID argument
2009-02-20 11:08 edzer
* R/zerodist.R, man/zerodist.Rd: added the unique.ID argument to
zerodist
2009-02-19 15:02 edzer
* R/spplot.R: spplot of logical variables did not work
2009-02-19 14:21 edzer
* src/zerodist.c: added user interrup checking in outer loop
2009-02-19 14:19 rsbivand
* DESCRIPTION, R/Class-SpatialPolygons.R,
R/SpatialPolygons-methods.R: non finite label points
2009-02-19 09:47 edzer
* R/spplot.R: allowed for boolean variables
2009-02-16 10:14 rsbivand
* DESCRIPTION, R/GridTopology-methods.R, R/SpatialGrid-methods.R:
dimension dropping in single cell grids
2009-01-22 16:50 edzer
* inst/doc/sp.Rnw: corrected description of overlay.
2009-01-04 16:01 edzer
* DESCRIPTION: version update
2009-01-04 16:01 edzer
* DESCRIPTION: 0.9-29 commit, as accepted
2009-01-04 15:26 edzer
* man/: 00sp.Rd, Spatial-class.Rd: corrected typos
2009-01-04 15:06 edzer
* man/: coordinates-methods.Rd, polygons-methods.Rd, spsample.Rd:
docs typos
2009-01-04 14:59 edzer
* man/asciigrid.Rd: {z} replaced with \code{z}
2009-01-04 14:58 edzer
* man/00sp.Rd: removed reference to spproj
2009-01-03 16:02 edzer
* DESCRIPTION: version update
2009-01-03 16:01 edzer
* man/spplot.Rd: examples for factor variables
2009-01-03 15:08 edzer
* R/spplot.R: further checking on length of col.regions when
plotting a factor
2009-01-03 14:48 edzer
* DESCRIPTION, INDEX, R/spplot.R, R/stack.R, man/spplot.Rd: version
update; spplot and stack: better deal with factor dependent
variables
2008-12-28 12:12 edzer
* R/SpatialPoints-methods.R: SpatialPoints() now preserves rownames
of coordinates, if they are present
2008-10-30 16:47 rsbivand
* NAMESPACE: NAMESPACE
2008-10-30 15:23 edzer
* NAMESPACE: removed export(.__C__*) things; they're no longer
needed
2008-10-29 23:16 edzer
* DESCRIPTION: version update
2008-10-29 23:02 edzer
* R/projected.R: typo
2008-10-29 22:56 edzer
* DESCRIPTION, R/SpatialGridDataFrame-methods.R,
man/SpatialPixelsDataFrame-class.Rd: added
coerce.SpatialPixelsDataFrame.SpatialPolygonsDataFrame; version
increase
2008-10-27 10:24 edzer
* R/projected.R: allowed for e.g. proj4string(x)="+proj=longlat" in
addition to proj4string(x)=CRS("+proj=longlat")
2008-10-03 09:29 rsbivand
* R/SpatialLinesDataFrame-methods.R: missing bbox in [ for SLDF
2008-10-02 16:59 rsbivand
* R/spplot.R, man/panel.Rd: fill polygons
2008-09-25 12:50 edzer
* man/: GridTopology-class.Rd, Spatial-class.Rd,
SpatialGrid-class.Rd, SpatialGrid.Rd,
SpatialGridDataFrame-class.Rd, SpatialPixels-class.Rd,
SpatialPixelsDataFrame-class.Rd, SpatialPoints-class.Rd,
SpatialPointsDataFrame-class.Rd, asciigrid.Rd, bpy.colors.Rd,
gridlines.Rd, is.projected.Rd, overlay-methods.Rd, panel.Rd,
spplot.Rd, spsample.Rd: added comment on factor usage in spplot;
updated email address everywhere
2008-09-25 12:26 edzer
* R/spplot.R: removed debug code
2008-09-25 12:14 edzer
* R/spplot.R: fixed bug with multiple panels of factor variables;
now derives legend from first panel only.
2008-08-20 14:55 edzer
* R/spplot.R: no change performed.
2008-08-12 22:22 edzer
* R/spplot.R: fill argument is now accepted by sp.polygons, and
accepts one color for each polygon.
2008-07-06 20:18 rsbivand
* R/GridTopology-methods.R, R/SpatialGrid-methods.R,
R/SpatialGridDataFrame-methods.R, data/meuse.grid_ll.rda,
man/SpatialGrid.Rd, man/SpatialGridDataFrame.Rd,
man/meuse.grid.Rd, man/meuse.grid_ll.Rd, tests/fail1.R,
tests/fail1.Rout.save, tests/grid.Rout.save: more attempts to
handle fuzz in points2grid
2008-07-04 20:29 rsbivand
* R/GridTopology-methods.R: blocking slack fuzz handling in
points2grid
2008-07-04 16:12 edzer