-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6422 lines (5033 loc) · 169 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
2013-04-15 Takeshi Horinouchi (HEAD, gphys-1_3_1, master)
improvement for netcdf-4: To avoid error when accessing opendap
though netcdf 4, changed to rescue error by calling redef and enddef
in VArrayNetCDF#val.
M lib/numru/gphys/varraynetcdf.rb
2013-04-15 Takeshi Horinouchi (origin/master, origin/HEAD)
Revert "the extention library is moved into ext/"
This reverts commit 9c59f9b4131150bfbc3d7a3087af8c8f1df90c47.
D ext/ext_coord.c
D ext/ext_init.c
D ext/extconf.rb
D ext/interpo.c
D ext/multibitIO.c
A ext_coord.c
A ext_init.c
A extconf.rb
A interpo.c
A multibitIO.c
2013-04-15 Takeshi Horinouchi
Revert "Updated extconf.rb; added $vendorarchdir to the search path etc."
This reverts commit 33b55ed30efa297a33d4c3e9b782dad01ee90c29.
M ext/extconf.rb
2013-03-28 Takeshi Horinouchi
Updated extconf.rb; added $vendorarchdir to the search path etc.
Reference: extconf.rb in rb-grib
Note: retained the part regarding cygwin and mingw, but I do not know
whether this part is still valid and needed.
M ext/extconf.rb
2013-03-28 Takeshi Horinouchi
Added *.log
M .gitignore
2013-03-28 Takeshi Horinouchi
the extention library is moved into ext/
A ext/ext_coord.c
A ext/ext_init.c
A ext/extconf.rb
A ext/interpo.c
A ext/multibitIO.c
D ext_coord.c
D ext_init.c
D extconf.rb
D interpo.c
D multibitIO.c
2013-03-27 Takeshi Horinouchi
(test) deleted the dummy file
D tmp.txt
2013-03-27 Takeshi Horinouchi
(test) added a dummy file
A tmp.txt
2013-03-27 Takeshi Horinouchi
Renamed the current ChangeLog to back up.
A .ChangeLog.until201303
D ChangeLog
2013-03-27 Takeshi Horinouchi
Registered files (patterns) to ignore in the repository
A .gitignore
2013-03-19 horinout (gphys-1_3_0, cvsimport)
corrected dates of recent commits (2012-->2013)
M ChangeLog
2013-03-19 horinout
*** empty log message ***
M LICENSE.txt
2013-03-19 horinout
Tue Mar 19 2012 T Horinouchi
* LICENCE.txt updated years
M ChangeLog
M LICENSE.txt
2013-03-19 horinout
Tue Mar 19 2012 T Horinouchi
* gphys-1.3.0 released (cvs tag gphys-1_3_0)
M ChangeLog
2013-03-19 horinout
Tue Mar 19 2012 T Horinouchi
* doc/ updated
* lib/numru/gphys/gphys_netcdf_io.rb: removed a comment-out block (to
update doc/)
M ChangeLog
M doc/axis.html
M doc/dclext.html
M doc/gphys.html
M doc/gphys_io.html
M doc/gpview.html
M doc/grid.html
M lib/numru/gphys/gphys_netcdf_io.rb
2013-03-19 horinout
Tue Mar 19 2012 T Horinouchi
* lib/numru/dclext.rb : edited the part introduced yesterday
M ChangeLog
M lib/numru/dclext.rb
2013-03-18 horinout
Mon Mar 18 2012 T Horinouchi
* lib/numru/dclext.rb : Added new module functions DCLExt.date_ax and
DCLExt.year_ax. DCLExt.date_ax is to avoid the problem of
DCL's UCPACK methods (uc[xy]acl and uc[xy]yr), which currently
do not put year labels when the period is long. The new
methods (date_ax and year_ax) may not be needed in future,
if the UCPACK methods are improved.
* lib/numru/ggraph.rb: private method __calendar_ax is
changed to use DCLExt.date_ax instead of uc[xy]acl.
M ChangeLog
M lib/numru/dclext.rb
M lib/numru/ggraph.rb
2013-03-12 horinout
Tue Mar 12 2012 T Horinouchi
* lib/numru/gphys/axis.rb,lib/numru/gphys/gphys.rb,
lib/numru/gphys/grid.rb,lib/numru/gphys/varraycomposite.rb:
refactoring for the duck typing
Tue Mar 5 2012 T Horinouchi
* lib/numru/gphys/gphys_netcdf_io.rb: minor inprovement in error msg
M ChangeLog
M lib/numru/gphys/axis.rb
M lib/numru/gphys/gphys.rb
M lib/numru/gphys/gphys_netcdf_io.rb
M lib/numru/gphys/grid.rb
M lib/numru/gphys/varraycomposite.rb
2013-03-12 horinout
Tue Mar 12 2012 T Horinouchi
* sample/druby_cli[12].rb, sample/druby_serv2.rb: updated
M ChangeLog
M sample/druby_cli1.rb
M sample/druby_cli2.rb
M sample/druby_serv2.rb
2013-03-04 horinout
Mon Mar 4 2012 T Horinouchi
* lib/numru/gphys/grid.rb: Added a new method Grid#insert_axis
* lib/numru/gphys/gphys.rb: Added a new class method
GPhys.concat, which is like GPhys.join but concatenates
GPhys objects (aligned in 1D) with a new axis
(non-exisistent in the GPhys objects) specified by argument(s).
M ChangeLog
M lib/numru/gphys/gphys.rb
M lib/numru/gphys/grid.rb
2013-03-04 horinout
Mon Mar 4 2012 T Horinouchi
* lib/numru/gphys/varraycomposite.rb: Supported VArrayComposite
construction with a greater rank than that of component VAarrays.
(e.g., to make a 4D VArray from 3D VArrays by concatenating them
with time).
M ChangeLog
M lib/numru/gphys/varraycomposite.rb
2013-03-04 horinout
* minor debug in the test part (which did not occur on another system).
M lib/numru/gphys/gphys_io.rb
2013-03-04 horinout
Mon Mar 4 2012 T Horinouchi
* lib/numru/gphys/gphys_io.rb: Added a new method (module function)
open_multi, which constructs a GPhys object across multiple
files (by using GPhys.join or GPhys.join_md).
The method open is modified to forward the processing
to open_multi, if the files are specified by an Array, NArray,
or Regexp. This means that the join functionality is now
available for all file types supported by GPhys, not just for NetCDF.
Also, the Ishioka latitudinal tiling is suppored.
* lib/numru/gphys/gphys.rb: removed unecessary stdout for development.
M ChangeLog
M lib/numru/gphys/gphys.rb
M lib/numru/gphys/gphys_io.rb
2013-03-03 horinout
Mon Mar 4 2012 T Horinouchi
* lib/numru/gphys/gphys.rb: Added new class methods
GPhys.join, GPhys.join_md, and GPhys.join_md_nocheck
to support multi-dimensional joining of GPhys objects
* lib/numru/gphys/axis.rb: Added a new class method
Axis.join to support 1D joining of GPhys axes
* lib/numru/gphys/mdstorage.rb: Created. Extendible multi-dimensional
strorage to support GPhys.join
M ChangeLog
M lib/numru/gphys/axis.rb
M lib/numru/gphys/gphys.rb
A lib/numru/gphys/mdstorage.rb
2013-03-01 horinout
Fri Mar 1 2012 T Horinouchi
* lib/numru/gphys/gphys.rb: GPhys::each_along_dims : debug
M ChangeLog
M lib/numru/gphys/gphys.rb
2013-02-23 horinout
Sat Feb 23 2013 T Horinouchi
* lib/numru/gphys/varraycomposite.rb: debug (for the special
case where component varray(s) are missing (nil))
M ChangeLog
M lib/numru/gphys/varraycomposite.rb
2013-02-09 takepiro
Thu Feb 09 2013 S Takehiro
* lib/numru/gphys/gphys_io.rb: open: support wildcard '?' in file name
M ChangeLog
M lib/numru/gphys/gphys_io.rb
2013-01-29 takepiro
Tue Jan 29 2013 S Takehiro < S Nishizawa
* bin/gpview: sequential operation implemented.
Tue Jan 29 2013 S Takehiro < T Tanigawa
* bin/gpview: calculation of aspect ratio of viewport improved.
M ChangeLog
M bin/gpview
2013-01-29 horinout
Tue Jan 29 2013 T Horinouchi
* lib/numru/gphys/gphys_fft.rb: behavior changed to
treat NArrayMiss with no missing (count_invalid==0)
without calling GPhys::fft_ignore_missing.
M ChangeLog
M lib/numru/gphys/gphys_fft.rb
2013-01-28 horinout
Mon Jan 28 2013 T Horinouchi
* lib/numru/ganalysis/met.rb: debug: e_sat_emanuel_water,
e_sat_emanuel_ice
M ChangeLog
M lib/numru/ganalysis/met.rb
2013-01-16 horinout
Wed Jan 16 2013 T Horinouchi
* lib/numru/dclext.rb : moved the contents from dclext_datetime_ax.rb
* lib/numru/dclext_datetime_ax.rb : removed
* doc/index.rd, doc/index.html : updated
M ChangeLog
M doc/index.html
M doc/index.rd
M lib/numru/dclext.rb
D lib/numru/dclext_datetime_ax.rb
M lib/numru/ggraph.rb
2012-12-14 takepiro
Fri Dec 14 2012 S Takehiro
* bin/gpview, bin/gpvect:
* Default wsn number is changed from 1 to 4
M ChangeLog
M bin/gpvect
M bin/gpview
2012-12-13 seiya
Thu Dec 13 2012 S Nishizawa
* lib/numru/ggraph.rb:
* change default value for the option of "auto" for tone to true
* change thresfold value to use tonf instead of tone
M ChangeLog
M lib/numru/ggraph.rb
2012-12-08 horinout
Sat Dec 08 2012 T Horinouchi
* doc/ updated
M ChangeLog
M doc/coordmapping.html
M doc/derivative/gphys-derivative.html
M doc/derivative/numru-derivative.html
M doc/gpcut.html
M doc/gphys.html
M doc/gphys_grib_io.html
M doc/gphys_io.html
M doc/gpmath.html
M doc/gpmaxmin.html
M doc/gpprint.html
M doc/gpview.html
M lib/numru/derivative.rb
M lib/numru/gphys/derivative.rb
2012-12-05 mizuta
* lib/numru/dclext.rb bugfix in DCLExt.flow_vect_anyproj
M ChangeLog
M lib/numru/dclext.rb
2012-09-06 seiya
* lib/numru/gphys.rb: changed to load rubygems if it exists
* lib/numru/gphys/gphys_io.rb: open: support wildcard '*' in file name
* lib/numru/gphys/gphys_netcdf_io.rb: open: support flat Array for file aggrigation
M ChangeLog
M lib/numru/gphys.rb
M lib/numru/gphys/gphys_io.rb
M lib/numru/gphys/gphys_netcdf_io.rb
2012-07-28 takepiro
Wed Jul 28 2012 S Takehiro
* bib/gpvect: option --ux_unit, --uy_unit, --xscale, --yscale
implemented
M ChangeLog
M bin/gpvect
2012-07-18 mizuta
Wed Jul 18 2012 R Mizuta
* lib/numru/gphys/gphys_netcdf.io.rb: open: fixed opening of a
single file as Array of files
* lib/numru/gphys/varraycomposite.rb: []: support for Array slicer
* lib/numru/gphys/varray.rb: convert_units: support for unusual calendars
M ChangeLog
M lib/numru/gphys/gphys_netcdf_io.rb
M lib/numru/gphys/varray.rb
M lib/numru/gphys/varraycomposite.rb
2012-07-17 horinout
Tue Jul 17 2012 T Horinouchi
* lib/numru/gphys/varraycomposite.rb: initialize: unify units if
different
* lib/numru/gphys/gphys_netcdf.io.rb: open: unify units if
different
* lib/numru/gphys/varray.rb: operator "**": changed not to adjust
units if other has units
* lib/numru/ganalysis/met.rb: added some methods regarding water
vapor.
M ChangeLog
M lib/numru/ganalysis/met.rb
M lib/numru/gphys/gphys_netcdf_io.rb
M lib/numru/gphys/varray.rb
M lib/numru/gphys/varraycomposite.rb
2012-06-27 otsuka
* lib/numru/dclext.rb: bugfix for the previous change.
M ChangeLog
M lib/numru/dclext.rb
2012-06-26 horinout
Tue Jun 25 2012 T Horinouchi
* lib/numru/dclext.rb: to restore axparam_bk when returning.
M ChangeLog
M lib/numru/dclext.rb
2012-06-15 otsuka
* lib/numru/gphys/gphys_nusdas_io.rb: improvement of error handling when opening NuSDaS
M ChangeLog
M lib/numru/gphys/gphys_nusdas_io.rb
2012-06-14 otsuka
* lib/numru/gphys/gphys_io.rb: file2type will raise error instead of returning nil when given file is not found.
M ChangeLog
M lib/numru/gphys/gphys_io.rb
2012-04-25 otsuka
* lib/numru/ganalysis/histogram.rb: bugfix of option 'window' in GGraph#histogram
M ChangeLog
M lib/numru/ganalysis/histogram.rb
2012-04-24 otsuka
* lib/numru/ggraph.rb
* patch by Dr. M. Nakano: when 'keep' => true for flow_vect_anyproj in GGraph.vector,
the unit vector did not have the same length with the previous one.
* new option for GGraph.vector: index
* lib/numru/dclext.rb
* patch by Dr. M. Nakano: changes in DCLExt.flow_vect_anyproj
related to the changes in ggraph.rb
* bugfix in DCLExt.legend
M ChangeLog
M lib/numru/dclext.rb
M lib/numru/ggraph.rb
2012-04-18 otsuka
* new options for GGraph.line, GGraph.histogram, and GAnalysis.histogram
M ChangeLog
M lib/numru/ganalysis/histogram.rb
M lib/numru/ggraph.rb
2012-04-11 horinout
Wed Apr 11 2012 T Horinouchi
* lib/numru/gphys/assoccoords.rb: added a new method AssocCoords#replace
* lib/numru/interpolate.rb: debug (of today's commit)
* interpo.c: debug regarding missing value setting
M ChangeLog
M interpo.c
M lib/numru/gphys/assoccoords.rb
M lib/numru/gphys/interpolate.rb
2012-04-11 horinout
Wed Apr 11 2012 T Horinouchi
* lib/numru/gphys/gphys.rb:
* facilitated subclass definition
* lifted the protection of GPhys#grid (finally!)
M ChangeLog
M lib/numru/gphys/gphys.rb
2012-04-11 horinout
Wed Apr 11 2012 T Horinouchi
* lib/numru/interpolate.rb: not to raise error
when interpolation is made outsie the full 2D grid
* lib/numru/ganalysis/met.rb: added a new method pv_on_p
M ChangeLog
M lib/numru/ganalysis/met.rb
M lib/numru/gphys/interpolate.rb
2012-04-06 horinout
Fri Apr 6 2012 T Horinouchi
* lib/numru/gphys/netcdf_convention.rb:
NetCDF_Convention_CF::assoc_coord_names : changed not to erroneously
treat standard coordinates as associated coordinates.
M ChangeLog
M lib/numru/gphys/netcdf_convention.rb
2012-04-06 otsuka
* lib/numru/dclext.rb: bugfix in legend
M ChangeLog
M lib/numru/dclext.rb
2012-03-26 otsuka
* lib/numru/ggraph.rb
* bugfix of map_axes for itr == 10
* lib/numru/dclext.rb
* bugfixes in color_bar and legend
* code refinement
M ChangeLog
M lib/numru/dclext.rb
M lib/numru/ggraph.rb
2012-03-09 otsuka
* lib/numru/ggraph.rb: bugfix of map_axes for itr == 10
M ChangeLog
M lib/numru/ggraph.rb
2012-03-02 horinout (gphys-1_2_2)
* Updated --- I thought I released 1.2.2 on Feb 27, but I found I didin't.
So I'll do it today, incorporating the bug fix by Mizutasan on Feb 28:
Fri Mar 2 2012 T Horinouchi
* gphys-1.2.2 released (cvs tag gphys-1_2_2)
M ChangeLog
2012-02-28 mizuta
Tue Feb 28 2012 R Mizuta
* lib/numru/gphys/unumeric.rb: not to use Date#to_datetime
+ fix for "proleptic_gregorian" calendar.
M ChangeLog
M lib/numru/gphys/unumeric.rb
2012-02-27 horinout
Mon Feb 27 2012 T Horinouchi
* gphys-1.2.2 released (cvs tag gphys-1_2_2)
M ChangeLog
2012-02-27 horinout
Mon Feb 27 2012 T Horinouchi
* lib/numru/varraygrib.rb : changed to explicitly raise LoadError
if rb-GRIB is not available and VArrayGrib::use_rb_grib is called.
M ChangeLog
M lib/numru/gphys/varraygrib.rb
2012-02-27 horinout
Mon Feb 27 2012 T Horinouchi
* lib/numru/ggraph.rb : altered the recently commited test :
reduced the numbder of figs; added cliping to polar stereo etc.
* lib/numru/gphys/assoccoords.rb : debug
M ChangeLog
M lib/numru/ggraph.rb
M lib/numru/gphys/assoccoords.rb
2012-02-27 horinout
Mon Feb 27 2012 T Horinouchi
* lib/numru/gphys/unumeric.rb: (for Ruby 1.8) not to use
Date#to_datetime if not defined.
M ChangeLog
M lib/numru/gphys/unumeric.rb
2012-02-26 otsuka
* lib/numru/dclext.rb: bugfix in color_bar
* lib/numru/ggraph.rb: bugfix of map_axes for itr == 10
M ChangeLog
M lib/numru/dclext.rb
M lib/numru/ggraph.rb
2012-02-24 otsuka
* lib/numru/ggraph.rb
* test of color_bar for itr = 13..15 and 20..23
M ChangeLog
M lib/numru/ggraph.rb
2012-02-24 otsuka
* lib/numru/dclext.rb
* bugfix in color_bar for itr >= 10
M ChangeLog
M lib/numru/dclext.rb
2012-02-23 horinout (gphys-1_2_1)
* gphys 1.2.1 released
M ChangeLog
2012-02-21 horinout
install.rb: Added again
M ChangeLog
A install.rb
2012-02-21 horinout (gphys-1_2_0)
Tue Feb 21 2012 T Horinouchi
* gphys-1.2.0 released (cvs tag gphys-1_2_0)
M ChangeLog
2012-02-20 horinout
Tue Feb 21 2012 T Horinouchi
* lib/numru/gphys/grib.rb : class name changed: NumRu::Grib -->
NumRu::GPhys::Grib etc
* lib/numru/gphys/varraygrads.rb: made gphys_grib (NumRu::GPhys::Grib)
the default, supported switching between gphys_grib and rb-GRIB
(external library)
* lib/numru/gphys/gphys_io.rb, lib/numru/gphys/gphys_grib_io.rb:
Changed accordingly
M ChangeLog
M lib/numru/gphys/gphys_grib_io.rb
M lib/numru/gphys/gphys_io.rb
M lib/numru/gphys/grib.rb
M lib/numru/gphys/varraygrib.rb
2012-02-20 horinout
Mon Feb 20 2012 T Horinouchi
* gphys_grib_io.rb, gphys_io.rb, varraygrib.rb: previous changes
are reverted
* README : updated
M ChangeLog
M README
M lib/numru/gphys/gphys_grib_io.rb
M lib/numru/gphys/gphys_io.rb
M lib/numru/gphys/varraygrib.rb
2012-02-20 seiya
* gphys_grib_io.rb, gphys_io.rb, varraygrib.rb: enable to switch
grib library (default is the gphys grib).
* to switch it use GPhys::IO.use_gphys_grib or GPhys:IO.use_rb_grib
M ChangeLog
M lib/numru/gphys/gphys_grib_io.rb
M lib/numru/gphys/gphys_io.rb
M lib/numru/gphys/varraygrib.rb
2012-02-20 horinout
Mon Feb 20 2012 T Horinouchi
* README : added a remark on rb-GRIB
M ChangeLog
M README
2012-02-20 horinout
Mon Feb 20 2012 T Horinouchi
* lib/numru/gphys/grib.rb : not show the warning (... is obsolte).
M ChangeLog
M lib/numru/gphys/grib.rb
2012-02-20 horinout
Mon Feb 20 2012 T Horinouchi
* lib/numru/ggraph.rb : added a colorbar in graph 34 & 36 (itr=5)
M ChangeLog
M lib/numru/ggraph.rb
2012-02-20 otsuka
* lib/numru/dclext.rb: bugfix in color_bar for itr = 5, 6
M ChangeLog
M lib/numru/dclext.rb
2012-02-19 horinout
Sun Feb 19 2012 T Horinouchi
* install.rb: deleted (it has been obsolete since extconf.rb
was introduced years ago.)
M ChangeLog
D install.rb
2012-02-19 takepiro
Sun Feb 19 2012 S Takehiro
* lib/numru/gphys/gphys_io.rb parse_gturl:
* gturl format was changed so as to be able to use "/"
as a separater between path and variable.
* bin/ : comments updated according to the change of gturl format.
M ChangeLog
M bin/gpaop
M bin/gpcut
M bin/gpedit
M bin/gpmath
M bin/gpmaxmin
M bin/gpprint
M bin/gpvect
M bin/gpview
M lib/numru/gphys/gphys_io.rb
2012-02-19 horinout
Sun Feb 19 2012 T Horinouchi
* README: udpated
M ChangeLog
M README
2012-02-19 horinout
Sun Feb 19 2012 T Horinouchi
* lib/numru/gphys/coordmapping.rb: adapted the test part to Ruby 1.9
M ChangeLog
M lib/numru/gphys/coordmapping.rb
2012-02-19 horinout
Sun Feb 19 2012 T Horinouchi
* lib/numru/ganalysis/histogram.rb: bugfix
M ChangeLog
M lib/numru/ganalysis/histogram.rb
2012-02-17 horinout
Fri Feb 17 2012 T Horinouchi
* lib/numru/ganalysis/met.rb: added an option to frontogenesis_func
* lib/numru/dclext.rb : updated the documentation part
* doc/ : updated
M ChangeLog
A doc/dclext.html
M doc/ggraph.html
M doc/gphys.html
M doc/gpview.html
M doc/index.html
M doc/index.rd
M doc/update
M lib/numru/dclext.rb
M lib/numru/ganalysis/met.rb
2012-02-16 horinout
Thu Feb 16 2012 T Horinouchi
* lib/numru/dclext.rb DCLExt::flow_vect_anyproj
* improved not to show arrows on the baskside when the
projection is multi-valued (map projections)
* added handling of NaNs
* modified test part
M ChangeLog
M lib/numru/dclext.rb
2012-02-15 horinout
Wed Feb 15 2012 T Horinouchi
* lib/numru/ggraph.rb (separated DCLExt into the new file dclext.rb)
* lib/numru/dclext.rb (new file) NumRu::DCLExt is separated from
lib/numru/ggraph.rb
M ChangeLog
A lib/numru/dclext.rb
M lib/numru/ggraph.rb
2012-02-15 horinout
Wed Feb 15 2012 T Horinouchi (actually done in Dec 2011)
* DCLExt::flow_vect_anyproj : added option polar_thinning etc.
M ChangeLog
M lib/numru/ggraph.rb
2012-02-09 otsuka
* lib/numru/ggraph.rb
* In GGraph, GPhys#name will be used for the title of a diagram
if GPhys#long_name is too long.
* tentative workaround in GGraph#color_bar
* lib/numru/ganalysis/eof.rb
* Load rubygems because Ruby/GSL might be installed via rubygems.
M ChangeLog
M lib/numru/ganalysis/eof.rb
M lib/numru/ggraph.rb
2012-02-09 mizuta
Thu Feb 9 2012 R Mizuta
* lib/numru/gphys/unumeric.rb
* bugfix in the method self::from_date with "360_day" calendar.
M ChangeLog
M lib/numru/gphys/unumeric.rb
2012-02-03 mizuta
Fri Feb 3 2012 R Mizuta
* lib/numru/gphys/grads_gridded.rb, gphys_grads_io.rb:
* fixed an error when variable names in grads ctl files
conflict with dimension names (x,y,z,t).
M lib/numru/gphys/gphys_grads_io.rb
2012-02-03 otsuka
* lib/numru/ggraph.rb
* Map projection numbers 16--19 and 34 are enabled.
Additional modifications might be needed in future.
(DCL 5.4.3 or later is needed to actually use these.)
M ChangeLog
M lib/numru/ggraph.rb
2012-02-03 mizuta
Fri Feb 3 2012 R Mizuta
* lib/numru/gphys/grads_gridded.rb, gphys_grads_io.rb:
* fixed an error when variable names in grads ctl files
conflict with dimension names (x,y,z,t).
M ChangeLog
M lib/numru/gphys/gphys_grads_io.rb
M lib/numru/gphys/grads_gridded.rb
2012-02-01 takepiro
Wed Dec 1 2012 S Takehiro < S. Nishizawa
* bin/gpview
* added --tonf option.
* bin/gpvect
* added --tonf option.
M ChangeLog
2012-02-01 takepiro
Wed Dec 1 2012 S Takehiro < S. Nishizawa
* bin/gpview
* added --tonf option.
* bin/gpvect
* added --tonf option.
M bin/gpvect
M bin/gpview
2012-01-31 mizuta
* lib/numru/gphys/unumeric.rb
* added support for "proleptic_gregorian" calendar.
* added check for invalid date in "360_day" calendar.
M ChangeLog
M lib/numru/gphys/unumeric.rb
2012-01-24 horinout
Tue Jan 24 2012 T Horinouchi
* commited some enhancement/modification made in Dec 2011
* lib/numru/ganalysis/planet.rb
* supported boundary condition selection for derivatives (lat_bc)
* added some methods (grad_sx, grad_sy, grad_sy_cosphifact,
weight_tanphi, weight_cosphi, weight_sinphi)
* lib/numru/ganalysis/met.rb
* added a method df_dx_vialogscale, to support numerical
derivative in log-p coordinate. This is not necessarily
an improvement --- it depends on inputs, but the default
is tentatively changed to use it.
* added new methods: z2geostrophic_wind, frontogenesis_func
M ChangeLog
M lib/numru/ganalysis/met.rb
M lib/numru/ganalysis/planet.rb
2012-01-08 otsuka
* lib/numru/ggraph.rb:
* GGraph#fig: default value of LGLOBE in map projections are changed.
* when Mercator, LGLOBE becomes true only if the window is
almost global.
* bugfix in DCLExt#color_bar: when map projection is used
in the main plot, ITR was reset when DCLExt.color_bar was called.
M ChangeLog
M lib/numru/ggraph.rb
2012-01-04 otsuka
* lib/numru/gphys/varray.rb: marshal dump and load are implemented.
M ChangeLog
M lib/numru/gphys/varray.rb
2011-12-24 otsuka
* lib/numru/ganalysis/histogram.rb: bugfix for logarithmic axes.
M ChangeLog
M lib/numru/ganalysis/histogram.rb
2011-12-22 otsuka
* lib/numru/ganalysis/histogram.rb: bugfix of default window.
M ChangeLog
M lib/numru/ganalysis/histogram.rb
2011-12-22 otsuka
* lib/numru/ggraph.rb: log10_safe and log10_or_0 are defined
in order to prevent errors when 0 is given to Math::log10.
Math::log10 in color_bar-related functions are substituted
with log10_or_0.
M ChangeLog
M lib/numru/ggraph.rb
2011-12-14 horinout
Wed Dec 14 2011 T Horinouchi
* lib/numru/ggraph.rb: Supported vector drawing in any projection
(esp. map projection!). It requires a new (yet to come) version
of NArrayMiss -- it depends on NArrayMiss#valid? with argument(s).
* New methods:
* DCLExt::flow_vect_anyproj : flow_vect on any DCL projection.
Arrows drawn by this method are properly directed locally
(consistent with the local coordinate). Their lengths are
proportional to those of the data given. (currently not yet
tested with the tranformations 5 and 6, which I'm not used to).
* DCLExt::unit_vect_single : for DCLExt::flow_vect_anyproj.
Draws only one arrow to express the scaling (by default,
upward oriented.)
* Default change:
* GGraph::vector : changed to use flow_vect_anyproj if
the current projection number is >= 2. (the method to use
can be switched by the new option "flow_vect_anyproj")
M ChangeLog
M lib/numru/ggraph.rb
2011-12-12 horinout
* lib/numru/interpolate.rb: Added a new method dcl_fig_cut,
which is separated from mouse_cut for use cases without
mouse click.
M ChangeLog
M lib/numru/gphys/interpolate.rb
2011-12-12 horinout
* lib/numru/interpolate.rb: debug of coord_data_reverse :
to avoid a side effect on the grid of self.
M ChangeLog
M lib/numru/gphys/interpolate.rb
2011-12-12 horinout
Mon Dec 12 2011 T Horinouchi
* lib/numru/interpolate.rb: debug of mouse_cut: up to the previous
version, the end point of the last line segment is not included
in the sample points. (So the debug is to cover this end point.)
M ChangeLog
M lib/numru/gphys/interpolate.rb
2011-12-09 otsuka
* lib/numru/ggraph.rb: xreverse and yreverse will be true
when the unit of an axis is compatible with that specified
as an option (previously xreverse/yreverse became true
only when the unit was exactly the same).
M ChangeLog
M lib/numru/ggraph.rb
2011-12-02 horinout
Fri Dec 2 2011 T Horinouchi
* lib/numru/gphys/gphys.rb: added a new method shape_coerce_full
(similar to shape_coerce but possibly expands by replication)
* lib/numru/interpolate.rb: added a new method coord_data_reverse
(reverses the main data (i.e., the dependent variable) and one of the
coordinates (an independent variable) through interpolation.)
M ChangeLog
M lib/numru/gphys/gphys.rb
M lib/numru/gphys/interpolate.rb
2011-12-01 horinout
Thu Dec 1 2011 T Horinouchi
* lib/numru/interpolate.rb, interpo.c: Supported a behavior
not to make extrapolation outside the original grid.
Changed the default behavior to this one.
* lib/numru/interpolate.rb: added a new class method
GPhys::extrapolation=(extrapo), where extrapo is true or
false --- the default behavior is false, as noted above.
M ChangeLog
M interpo.c
M lib/numru/gphys/interpolate.rb
2011-11-29 seiya
* lib/numru/grib.rb: print message to inform that this grib library is obsoluted.
* lib/numru/varraygrib: change to find rb-grib library first.
M ChangeLog
M lib/numru/gphys/grib.rb
M lib/numru/gphys/varraygrib.rb
2011-11-20 takepiro
Sun Nov 20 2011 S Takehiro
* bin/gpview: option --eddy implemented.
* bin/gpvect: option --eddy implemented.
M ChangeLog
M bin/gpvect
M bin/gpview
2011-11-11 horinout
Fri Nov 11 2011 T Horinouchi
* lib/numru/ggraph.rb: added 'xloglabelall' and
'yloglabelall' to the options of GGraph::axes (to show
lavels for all log-level tick marks)
M ChangeLog
M lib/numru/ggraph.rb
2011-11-03 takepiro
Thu Nov 03 2011 S Takehiro
* bin/gpview: option --time_ax implemented.
M ChangeLog
M bin/gpview
2011-10-28 otsuka
* lib/numru/ganalysis/histogram.rb: support for itr=2, 3, and 4 in GGraph#histogram.
M ChangeLog
M lib/numru/ganalysis/histogram.rb
2011-10-18 horinout
Tue Oct 18 2011 T Horinouchi
* lib/numru/ganalysis/planet.rb :
* Changed method name: get_lonlat --> get_lambda_phi.
* method get_lambda_phi: added an optional argument
err_raise (default:true). Changed the order of outputs.
Added doc.
* lib/numru/interpolate.rb: minor reformating of documentation
* lib/numru/gphys/axis.rb: Axis#cyclic_extendible?: debug
Mon Oct 17 2011 T Horinouchi
* lib/numru/ganalysis/planet.rb : find_lon_lat_dims: Refined the
criteria
M ChangeLog
M lib/numru/ganalysis/planet.rb
M lib/numru/gphys/axis.rb
M lib/numru/gphys/interpolate.rb
2011-10-14 horinout
Fri Oct 14 2011 T Horinouchi