gphys 1.4.3.2 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. data/.ChangeLog.until201303 +2156 -0
  2. data/.gitignore +7 -1
  3. data/Rakefile +36 -1
  4. data/bin/gpview +75 -58
  5. data/{dim_op.c → ext/numru/gphys/dim_op.c} +4 -1
  6. data/{ext_coord.c → ext/numru/gphys/ext_coord.c} +35 -17
  7. data/{ext_init.c → ext/numru/gphys/ext_init.c} +0 -0
  8. data/ext/numru/gphys/extconf.rb +43 -0
  9. data/{interpo.c → ext/numru/gphys/interpo.c} +35 -30
  10. data/{multibitIO.c → ext/numru/gphys/multibitIO.c} +19 -15
  11. data/gphys-bigmem.gemspec +44 -0
  12. data/gphys.gemspec +4 -4
  13. data/lib/numru/dclext.rb +55 -0
  14. data/lib/numru/derivative.rb +6 -5
  15. data/lib/numru/ganalysis/met.rb +27 -10
  16. data/lib/numru/ganalysis/qg.rb +4 -3
  17. data/lib/numru/ganalysis/sph_harmonic_iso_g.rb +290 -0
  18. data/lib/numru/ggraph.rb +81 -2
  19. data/lib/numru/gphys/derivative.rb +3 -2
  20. data/lib/numru/gphys/gpcommon.rb +7 -1
  21. data/lib/numru/gphys/gphys_fft.rb +3 -3
  22. data/lib/numru/gphys/gphys_hdfeos5_io.rb +14 -13
  23. data/lib/numru/gphys/grib.rb +18 -7
  24. data/lib/numru/gphys/gtool3.rb +53 -52
  25. data/lib/numru/gphys/interpolate.rb +3 -2
  26. data/lib/numru/gphys/varraycomposite.rb +1 -1
  27. data/lib/numru/gphys/varraynetcdf.rb +38 -0
  28. data/lib/numru/gphys/version.rb +2 -1
  29. data/test/test_axis.rb +1 -5
  30. data/test/test_fitting.rb +0 -1
  31. data/test/test_gphys.rb +9 -5
  32. data/test/test_met_z.rb +1 -2
  33. data/test/test_sigma_coord.rb +0 -1
  34. metadata +36 -19
  35. checksums.yaml +0 -15
  36. data/.rspec +0 -2
  37. data/.travis.yml +0 -3
  38. data/ChangeLog +0 -7007
  39. data/extconf.rb +0 -51
  40. data/spec/gphys_spec.rb +0 -11
  41. data/spec/spec_helper.rb +0 -2
@@ -0,0 +1,2156 @@
1
+ Tue Mar 19 2013 T Horinouchi
2
+ * gphys-1.3.0 released (cvs tag gphys-1_3_0)
3
+ * LICENCE.txt updated years
4
+ * doc/ updated
5
+ * lib/numru/gphys/gphys_netcdf_io.rb: removed a comment-out block (to
6
+ update doc/)
7
+ * lib/numru/dclext.rb : edited the part introduced yesterday
8
+ Mon Mar 18 2013 T Horinouchi
9
+ * lib/numru/dclext.rb : Added new module functions DCLExt.date_ax and
10
+ DCLExt.year_ax. DCLExt.date_ax is to avoid the problem of
11
+ DCL's UCPACK methods (uc[xy]acl and uc[xy]yr), which currently
12
+ do not put year labels when the period is long. The new
13
+ methods (date_ax and year_ax) may not be needed in future,
14
+ if the UCPACK methods are improved.
15
+ * lib/numru/ggraph.rb: private method __calendar_ax is
16
+ changed to use DCLExt.date_ax instead of uc[xy]acl.
17
+ Tue Mar 12 2013 T Horinouchi
18
+ * lib/numru/gphys/axis.rb,lib/numru/gphys/gphys.rb,
19
+ lib/numru/gphys/grid.rb,lib/numru/gphys/varraycomposite.rb:
20
+ refactoring for the duck typing
21
+ Tue Mar 12 2013 T Horinouchi
22
+ * sample/druby_cli[12].rb, sample/druby_serv2.rb: updated
23
+ Tue Mar 5 2013 T Horinouchi
24
+ * lib/numru/gphys/gphys_netcdf_io.rb: minor inprovement in error msg
25
+ Mon Mar 4 2013 T Horinouchi
26
+ * lib/numru/gphys/grid.rb: Added a new method Grid#insert_axis
27
+ * lib/numru/gphys/gphys.rb: Added a new class method
28
+ GPhys.concat, which is like GPhys.join but concatenates
29
+ GPhys objects (aligned in 1D) with a new axis
30
+ (non-exisistent in the GPhys objects) specified by argument(s).
31
+ * lib/numru/gphys/varraycomposite.rb: Supported VArrayComposite
32
+ construction with a greater rank than that of component VAarrays.
33
+ (e.g., to make a 4D VArray from 3D VArrays by concatenating them
34
+ with time).
35
+ Mon Mar 4 2013 T Horinouchi
36
+ * lib/numru/gphys/gphys_io.rb: Added a new method (module function)
37
+ open_multi, which constructs a GPhys object across multiple
38
+ files (by using GPhys.join or GPhys.join_md).
39
+ The method open is modified to forward the processing
40
+ to open_multi, if the files are specified by an Array, NArray,
41
+ or Regexp. This means that the join functionality is now
42
+ available for all file types supported by GPhys, not just for NetCDF.
43
+ Also, the Ishioka latitudinal tiling is suppored.
44
+ * lib/numru/gphys/gphys.rb: Added new class methods
45
+ GPhys.join, GPhys.join_md, and GPhys.join_md_nocheck
46
+ to support multi-dimensional joining of GPhys objects
47
+ * lib/numru/gphys/axis.rb: Added a new class method
48
+ Axis.join to support 1D joining of GPhys axes
49
+ * lib/numru/gphys/mdstorage.rb: Created. Extendible multi-dimensional
50
+ strorage to support GPhys.join
51
+ Fri Mar 1 2013 T Horinouchi
52
+ * lib/numru/gphys/gphys.rb: GPhys::each_along_dims : debug
53
+ Sat Feb 23 2013 T Horinouchi
54
+ * lib/numru/gphys/varraycomposite.rb: debug (for the special
55
+ case where component varray(s) are missing (nil))
56
+ Thu Feb 09 2013 S Takehiro
57
+ * lib/numru/gphys/gphys_io.rb: open: support wildcard '?' in file name
58
+ Tue Jan 29 2013 S Takehiro < S Nishizawa
59
+ * bin/gpview: sequential operation implemented.
60
+ Tue Jan 29 2013 S Takehiro < T Tanigawa
61
+ * bin/gpview: calculation of aspect ratio of viewport improved.
62
+ Tue Jan 29 2013 T Horinouchi
63
+ * lib/numru/gphys/gphys_fft.rb: behavior changed to
64
+ treat NArrayMiss with no missing (count_invalid==0)
65
+ without calling GPhys::fft_ignore_missing.
66
+ Mon Jan 28 2013 T Horinouchi
67
+ * lib/numru/ganalysis/met.rb: debug: e_sat_emanuel_water,
68
+ e_sat_emanuel_ice
69
+ Wed Jan 16 2013 T Horinouchi
70
+ * lib/numru/dclext.rb : moved the contents from dclext_datetime_ax.rb
71
+ * lib/numru/dclext_datetime_ax.rb : removed
72
+ * doc/index.rd, doc/index.html : updated
73
+ Fri Dec 14 2012 S Takehiro
74
+ * bin/gpview, bin/gpvect:
75
+ * Default wsn number is changed from 1 to 4
76
+ Thu Dec 13 2012 S Nishizawa
77
+ * lib/numru/ggraph.rb:
78
+ * change default value for the option of "auto" for tone to true
79
+ * change thresfold value to use tonf instead of tone
80
+ Sat Dec 08 2012 T Horinouchi
81
+ * doc/ updated
82
+ Wed Dec 05 2012 R Mizuta
83
+ * lib/numru/dclext.rb bugfix in DCLExt.flow_vect_anyproj
84
+ Thu Sep 06 2012 S Nishizawa
85
+ * lib/numru/gphys.rb: changed to load rubygems if it exists
86
+ * lib/numru/gphys/gphys_io.rb: open: support wildcard '*' in file name
87
+ * lib/numru/gphys/gphys_netcdf_io.rb: open: support flat Array for file aggrigation
88
+ Wed Jul 28 2012 S Takehiro
89
+ * bib/gpvect: option --ux_unit, --uy_unit, --xscale, --yscale
90
+ implemented
91
+ Wed Jul 18 2012 R Mizuta
92
+ * lib/numru/gphys/gphys_netcdf.io.rb: open: fixed opening of a
93
+ single file as Array of files
94
+ * lib/numru/gphys/varraycomposite.rb: []: support for Array slicer
95
+ * lib/numru/gphys/varray.rb: convert_units: support for unusual calendars
96
+ Tue Jul 17 2012 T Horinouchi
97
+ * lib/numru/gphys/varraycomposite.rb: initialize: unify units if
98
+ different
99
+ * lib/numru/gphys/gphys_netcdf.io.rb: open: unify units if
100
+ different
101
+ * lib/numru/gphys/varray.rb: operator "**": changed not to adjust
102
+ units if other has units
103
+ * lib/numru/ganalysis/met.rb: added some methods regarding water
104
+ vapor.
105
+ Wed Jun 26 2012 S Otsuka
106
+ * lib/numru/dclext.rb: bugfix for the previous change.
107
+ Tue Jun 25 2012 T Horinouchi
108
+ * lib/numru/dclext.rb: to restore axparam_bk when returning.
109
+ Thu Jun 15 2012 S Otsuka
110
+ * lib/numru/gphys/gphys_nusdas_io.rb
111
+ * improvement of error handling when opening NuSDaS
112
+ Thu Jun 14 2012 S Otsuka
113
+ * lib/numru/gphys/gphys_io.rb
114
+ * file2type will raise error instead of returning nil when given file is not found.
115
+ Wed Apr 25 2012 S Otsuka
116
+ * lib/numru/ganalysis/histogram.rb
117
+ * bugfix of option 'window' in GGraph#histogram
118
+ Tue Apr 24 2012 S Otsuka
119
+ * lib/numru/ggraph.rb
120
+ * patch by Dr. M. Nakano: when 'keep' => true for flow_vect_anyproj in GGraph.vector,
121
+ the unit vector did not have the same length with the previous one.
122
+ * new option for GGraph.vector: index
123
+ * lib/numru/dclext.rb
124
+ * patch by Dr. M. Nakano: changes in DCLExt.flow_vect_anyproj
125
+ related to the changes in ggraph.rb
126
+ * bugfix in DCLExt.legend
127
+ Wed Apr 18 2012 S Otsuka
128
+ * lib/numru/ggraph.rb
129
+ * new options for GGraph.line: step_plot and step_position.
130
+ * lib/numru/ganalysis/histogram.rb
131
+ * new options: log_bins and fill_pattern.
132
+ Wed Apr 11 2012 T Horinouchi
133
+ * lib/numru/gphys/assoccoords.rb: added a new method AssocCoords#replace
134
+ * lib/numru/interpolate.rb: debug (of today's commit)
135
+ * interpo.c: debug regarding missing value setting
136
+ Wed Apr 11 2012 T Horinouchi
137
+ * lib/numru/interpolate.rb: not to raise error
138
+ when interpolation is made outsie the full 2D grid
139
+ * lib/numru/ganalysis/met.rb: added a new method pv_on_p
140
+ * lib/numru/gphys/gphys.rb:
141
+ * facilitated subclass definition
142
+ * lifted the protection of GPhys#grid (finally!)
143
+ Fri Apr 6 2012 T Horinouchi
144
+ * lib/numru/gphys/netcdf_convention.rb:
145
+ NetCDF_Convention_CF::assoc_coord_names : changed not to erroneously
146
+ treat standard coordinates as associated coordinates.
147
+ Fri Apr 6 2012 S Otsuka
148
+ * lib/numru/dclext.rb
149
+ * bugfix in legend
150
+ Mon Mar 26 2012 S Otsuka
151
+ * lib/numru/ggraph.rb
152
+ * bugfix of map_axes for itr == 10
153
+ * lib/numru/dclext.rb
154
+ * bugfixes in color_bar and legend
155
+ * code refinement
156
+ Fri Mar 9 2012 S Otsuka
157
+ * lib/numru/ggraph.rb
158
+ * bugfix of map_axes for itr == 10
159
+ Fri Mar 2 2012 T Horinouchi
160
+ * gphys-1.2.2 released (cvs tag gphys-1_2_2)
161
+ Tue Feb 28 2012 R Mizuta
162
+ * lib/numru/gphys/unumeric.rb: not to use Date#to_datetime
163
+ + fix for "proleptic_gregorian" calendar.
164
+ Mon Feb 27 2012 T Horinouchi
165
+ * (Added Mar 2) I thought I did the following, but it has not been
166
+ released:
167
+ * gphys-1.2.2 released (cvs tag gphys-1_2_2)
168
+ * lib/numru/varraygrib.rb : changed to explicitly raise LoadError
169
+ if rb-GRIB is not available and VArrayGrib::use_rb_grib is called.
170
+ * lib/numru/ggraph.rb : altered the recently commited test :
171
+ reduced the numbder of figs; added cliping to polar stereo etc.
172
+ * lib/numru/gphys/assoccoords.rb : debug
173
+ * lib/numru/gphys/unumeric.rb: (for Ruby 1.8) not to use
174
+ Date#to_datetime if not defined.
175
+ Sun Feb 26 2012 S Otsuka
176
+ * lib/numru/dclext.rb
177
+ * bugfix in color_bar
178
+ * lib/numru/ggraph.rb
179
+ * bugfix of map_axes for itr == 10
180
+ Fri Feb 24 2012 S Otsuka
181
+ * lib/numru/dclext.rb
182
+ * bugfix in color_bar for itr >= 10
183
+ * lib/numru/ggraph.rb
184
+ * test of color_bar for itr = 13..15 and 20..23
185
+ Thu Feb 23 2012 T Horinouchi
186
+ * gphys-1.2.1 released (cvs tag gphys-1_2_1)
187
+ Tue Feb 21 2012 T Horinouchi
188
+ * install.rb: added again
189
+ Tue Feb 21 2012 T Horinouchi
190
+ * gphys-1.2.0 released (cvs tag gphys-1_2_0)
191
+ Tue Feb 21 2012 T Horinouchi
192
+ * lib/numru/gphys/grib.rb : class name changed: NumRu::Grib -->
193
+ NumRu::GPhys::Grib etc
194
+ * lib/numru/gphys/varraygrads.rb: made gphys_grib (NumRu::GPhys::Grib)
195
+ the default, supported switching between gphys_grib and rb-GRIB
196
+ (external library)
197
+ * lib/numru/gphys/gphys_io.rb, lib/numru/gphys/gphys_grib_io.rb:
198
+ Changed accordingly
199
+ Mon Feb 20 2012 T Horinouchi
200
+ * gphys_grib_io.rb, gphys_io.rb, varraygrib.rb: previous changes
201
+ are reverted
202
+ * README : updated
203
+ Mon Feb 20 2012 S Nishizawa
204
+ * gphys_grib_io.rb, gphys_io.rb, varraygrib.rb: enable to switch
205
+ grib library (default is the gphys grib).
206
+ * to switch it use GPhys::IO.use_gphys_grib or GPhys:IO.use_rb_grib
207
+ Mon Feb 20 2012 T Horinouchi
208
+ * README : added a remark on rb-GRIB
209
+ * lib/numru/ggraph.rb : added a colorbar in graph 34 & 36 (itr=5)
210
+ * lib/numru/gphys/grib.rb : not show the warning (... is obsolte).
211
+ Mon Feb 20 2012 S Otsuka
212
+ * lib/numru/dclext.rb
213
+ * bugfix in color_bar for itr = 5, 6
214
+ Sun Feb 19 2012 T Horinouchi
215
+ * install.rb: deleted (it has been obsolete since extconf.rb
216
+ was introduced years ago.)
217
+ Sun Feb 19 2012 S Takehiro
218
+ * lib/numru/gphys/gphys_io.rb parse_gturl:
219
+ * gturl format was changed so as to be able to use "/"
220
+ as a separater between path and variable.
221
+ * bin/ : comments updated according to the change of gturl format.
222
+ Sun Feb 19 2012 T Horinouchi
223
+ * README: udpated
224
+ * lib/numru/gphys/coordmapping.rb: adapted the test part to Ruby 1.9
225
+ * lib/numru/ganalysis/histogram.rb: bugfix
226
+ Fri Feb 17 2012 T Horinouchi
227
+ * lib/numru/ganalysis/met.rb: added an option to frontogenesis_func
228
+ * lib/numru/dclext.rb : updated the documentation part
229
+ * doc/ : updated
230
+ Thu Feb 16 2012 T Horinouchi
231
+ * lib/numru/dclext.rb DCLExt::flow_vect_anyproj
232
+ * improved not to show arrows on the baskside when the
233
+ projection is multi-valued (map projections)
234
+ * added handling of NaNs
235
+ * modified test part
236
+ Wed Feb 15 2012 T Horinouchi
237
+ * lib/numru/ggraph.rb (separated DCLExt into the new file dclext.rb)
238
+ * lib/numru/dclext.rb (new file) NumRu::DCLExt is separated from
239
+ lib/numru/ggraph.rb
240
+ Wed Feb 15 2012 T Horinouchi (actually done in Dec 2011)
241
+ * DCLExt::flow_vect_anyproj : added option polar_thinning etc.
242
+ Thu Feb 9 2012 S Otsuka
243
+ * lib/numru/ggraph.rb
244
+ * In GGraph, GPhys#name will be used for the title of a diagram
245
+ if GPhys#long_name is too long.
246
+ * tentative workaround in GGraph#color_bar
247
+ * lib/numru/ganalysis/eof.rb
248
+ * Load rubygems because Ruby/GSL might be installed via rubygems.
249
+ Thu Feb 9 2012 R Mizuta
250
+ * lib/numru/gphys/unumeric.rb
251
+ * bugfix in the method self::from_date with "360_day" calendar.
252
+ Fri Feb 3 2012 S Otsuka
253
+ * lib/numru/ggraph.rb
254
+ * Map projection numbers 16--19 and 34 are enabled.
255
+ Additional modifications might be needed in future.
256
+ (DCL 5.4.3 or later is needed to actually use these.)
257
+ Fri Feb 3 2012 R Mizuta
258
+ * lib/numru/gphys/grads_gridded.rb, gphys_grads_io.rb:
259
+ * fixed an error when variable names in grads ctl files
260
+ conflict with dimension names (x,y,z,t).
261
+ Wed Feb 1 2012 S Takehiro < S. Nishizawa
262
+ * bin/gpview
263
+ * added --tonf option.
264
+ * bin/gpvect
265
+ * added --tonf option.
266
+ Tue Jan 31 2012 R Mizuta
267
+ * lib/numru/gphys/unumeric.rb
268
+ * added support for "proleptic_gregorian" calendar.
269
+ * added check for invalid date in "360_day" calendar.
270
+ Tue Jan 24 2012 T Horinouchi
271
+ * commited some enhancement/modification made in Dec 2011
272
+ * lib/numru/ganalysis/planet.rb
273
+ * supported boundary condition selection for derivatives (lat_bc)
274
+ * added some methods (grad_sx, grad_sy, grad_sy_cosphifact,
275
+ weight_tanphi, weight_cosphi, weight_sinphi)
276
+ * lib/numru/ganalysis/met.rb
277
+ * added a method df_dx_vialogscale, to support numerical
278
+ derivative in log-p coordinate. This is not necessarily
279
+ an improvement --- it depends on inputs, but the default
280
+ is tentatively changed to use it.
281
+ * added new methods: z2geostrophic_wind, frontogenesis_func
282
+ Sun Jan 8 2012 S Otsuka
283
+ * lib/numru/ggraph.rb:
284
+ * default value of LGLOBE in map projections are changed.
285
+ * when Mercator, LGLOBE becomes true only if the window is
286
+ almost global.
287
+ * bugfix in DCLExt#color_bar: when map projection is used
288
+ in the main plot, ITR was reset when DCLExt.color_bar was called.
289
+ Wed Jan 4 2012 S Otsuka
290
+ * lib/numru/gphys/varray.rb: marshal dump and load are implemented.
291
+ Thu Dec 24 2011 S Otsuka
292
+ * lib/numru/ganalysis/histogram.rb: bugfix for logarithmic axes.
293
+ Thu Dec 22 2011 S Otsuka
294
+ * lib/numru/ggraph.rb: log10_safe and log10_or_0 are defined
295
+ in order to prevent errors when 0 is given to Math::log10.
296
+ Math::log10 in color_bar-related functions are substituted
297
+ with log10_or_0.
298
+ * lib/numru/ganalysis/histogram.rb: bugfix of default window.
299
+ Wed Dec 14 2011 T Horinouchi
300
+ * lib/numru/ggraph.rb: Supported vector drawing in any projection
301
+ (esp. map projection!). It requires a new (yet to come) version
302
+ of NArrayMiss -- it depends on NArrayMiss#valid? with argument(s).
303
+ * New methods:
304
+ * DCLExt::flow_vect_anyproj : flow_vect on any DCL projection.
305
+ Arrows drawn by this method are properly directed locally
306
+ (consistent with the local coordinate). Their lengths are
307
+ proportional to those of the data given. (currently not yet
308
+ tested with the tranformations 5 and 6, which I'm not used to).
309
+ * DCLExt::unit_vect_single : for DCLExt::flow_vect_anyproj.
310
+ Draws only one arrow to express the scaling (by default,
311
+ upward oriented.)
312
+ * Default change:
313
+ * GGraph::vector : changed to use flow_vect_anyproj if
314
+ the current projection number is >= 2. (the method to use
315
+ can be switched by the new option "flow_vect_anyproj")
316
+
317
+ Mon Dec 12 2011 T Horinouchi
318
+ * lib/numru/interpolate.rb: debug of mouse_cut: up to the previous
319
+ version, the end point of the last line segment is not included
320
+ in the sample points. (So the debug is to cover this end point.)
321
+ * lib/numru/interpolate.rb: debug of coord_data_reverse :
322
+ to avoid a side effect on the grid of self.
323
+ * lib/numru/interpolate.rb: Added a new method dcl_fig_cut,
324
+ which is separated from mouse_cut for use cases without
325
+ mouse click.
326
+ Fri Dec 9 2011 S Otsuka
327
+ * lib/numru/ggraph.rb: xreverse and yreverse will be true
328
+ when the unit of an axis is compatible with that specified
329
+ as an option (previously xreverse/yreverse became true
330
+ only when the unit was exactly the same).
331
+ Fri Dec 2 2011 T Horinouchi
332
+ * lib/numru/gphys/gphys.rb: added a new method shape_coerce_full
333
+ (similar to shape_coerce but possibly expands by replication)
334
+ * lib/numru/interpolate.rb: added a new method coord_data_reverse
335
+ (reverses the main data (i.e., the dependent variable) and one of the
336
+ coordinates (an independent variable) through interpolation.)
337
+ Thu Dec 1 2011 T Horinouchi
338
+ * lib/numru/interpolate.rb, interpo.c: Supported a behavior
339
+ not to make extrapolation outside the original grid.
340
+ Changed the default behavior to this one.
341
+ * lib/numru/interpolate.rb: added a new class method
342
+ GPhys::extrapolation=(extrapo), where extrapo is true or
343
+ false --- the default behavior is false, as noted above.
344
+ Tue Nov 29 2011 S Nishizawa
345
+ * lib/numru/grib.rb: print message to inform that this grib library is obsoluted.
346
+ * lib/numru/varraygrib: change to find rb-grib library first.
347
+ Sun Nov 20 2011 S Takehiro
348
+ * bin/gpview: option --eddy implemented.
349
+ * bin/gpvect: option --eddy implemented.
350
+ Fri Nov 11 2011 T Horinouchi
351
+ * lib/numru/ggraph.rb: added 'xloglabelall' and
352
+ 'yloglabelall' to the options of GGraph::axes (to show
353
+ lavels for all log-level tick marks)
354
+ Thu Nov 03 2011 S Takehiro
355
+ * bin/gpview: option --time_ax implemented.
356
+ Fri Oct 28 2011 S Otsuka
357
+ * lib/numru/ganalysis/histogram.rb:
358
+ * support for itr=2, 3, and 4 in GGraph#histogram.
359
+ Tue Oct 18 2011 T Horinouchi
360
+ * lib/numru/ganalysis/planet.rb :
361
+ * Changed method name: get_lonlat --> get_lambda_phi.
362
+ * method get_lambda_phi: added an optional argument
363
+ err_raise (default:true). Changed the order of outputs.
364
+ Added doc.
365
+ * lib/numru/interpolate.rb: minor reformating of documentation
366
+ * lib/numru/gphys/axis.rb: Axis#cyclic_extendible?: debug
367
+ Mon Oct 17 2011 T Horinouchi
368
+ * lib/numru/ganalysis/planet.rb : find_lon_lat_dims: Refined the
369
+ criteria
370
+ Fri Oct 14 2011 T Horinouchi
371
+ * lib/numru/gphys/derivative.rb: added a new method deriv2nd
372
+ * lib/numru/derivative.rb: added a new method deriv2nd
373
+ (2nd derivative covering uniform grids)
374
+ Sun Sep 04 2011 S Otsuka
375
+ * When max and min of an axis are the same integer value,
376
+ window values become invalid.
377
+ Thu Aug 18 2011 T Horinouchi
378
+ * lib/numru/interpolate.rb: mouse_cut: added optional arguments
379
+ line_type & line_index, whose default values are 1 & 1,respectively.
380
+ Mon Aug 15 2011 T Horinouchi
381
+ * gphys-1.1.1 released (cvs tag gphys-1_1_1)
382
+ Thu Aug 11 2011 T Horinouchi
383
+ * LICENCE.txt: Added (BSD 2-clause licence)
384
+ * lib/numru/ggraph.rb: added a method linear_reg_slope_error.
385
+ --- It may not be a good choice to define this method
386
+ here. It is placed here just because it is related with
387
+ the linear_regression method called in regression_line.
388
+ In future, methods like this can be moved to another
389
+ module, so to document it is deliberately avoided.
390
+ Sat Jul 29 2011 S Takehiro
391
+ * bin/gpview: option --clrmap fixed.
392
+ Thu Jul 14 2011 S Otsuka
393
+ * lib/numru/gphys/gphys_nusdas_io.rb: Bug fix for assoc_coords.
394
+ Fri Jun 24 2011 S Otsuka
395
+ * lib/numru/gphys/gphys_netcdf_io.rb: when variable name is included in
396
+ the assoc_coord_names, assoc_coords should not be set.
397
+ Thu Jun 23 2011 T Horinouchi
398
+ * lib/numru/ggraph.rb: added new options ux_unit and uy_unit,
399
+ which specify unit vector lengths
400
+ Tue Jun 7 2011 T Horinouchi
401
+ * lib/numru/ganalysis/planet.rb : Added a new method grad_s
402
+ Tue Jun 7 2011 T Horinouchi < R Mizuta (jun 3)
403
+ * lib/numru/gphys/subsetmapping.rb: bug fix (l.234)
404
+
405
+ Wed May 11 2011 S Otsuka
406
+ * multibitIO.c: StringValueCStr in rb_str_to_uint*
407
+ is substituded by StringValuePtr to avoid an error message.
408
+ * lib/numru/gphys/grib.rb: When data were stored from north to south
409
+ or from east to west, the axes were inconsistent with the data.
410
+ Tue Apr 19 2011 S Otsuka
411
+ * lib/numru/ganalysis/histogram.rb: Minimum number of nbins
412
+ is increased from 1 to 10 when not specified.
413
+ Sat Mar 19 2011 T Horinouchi
414
+ * lib/numru/ganalysis/eof.rb: Updated an error message
415
+ Fri Mar 18 2011 T Horinouchi
416
+ * ggraph.rb: Added a method regression_line.
417
+ (((CAUTION: This will fully work in combination with a future
418
+ NArrayMiss version newer than 1.2.1. Currently,
419
+ to feed it data with missing will cause an error.)))
420
+
421
+ Tue Mar 15 2011 T Horinouchi
422
+ * lib/numru/gphys/gphys_fft.rb: a refactoring to deal with
423
+ a syntax change (or a BUG??) in Ruby 1.9.2 (compared with
424
+ Ruby 1.8) regarding multiple assignments in one line
425
+ using the "[]=" method.
426
+
427
+ Fri Feb 25 2011 T Horinouchi
428
+ * gphys-1.1.0 released (cvs tag gphys-1_1_0)
429
+ * lib/numru/gphys/unumeric.rb: added treatment for
430
+ two- and one-digit years: to always interpret them as
431
+ 00\d\d etc., not 20\d\d or 19\d\d (as in Date of Ruby 1.9),
432
+ regardless Ruby versions.
433
+ * documents updated.
434
+ Tue Feb 22 2011 T Koshiro
435
+ * multibitIO.c: ruby 1.9.2 compatibility
436
+ Mon Feb 21 2011 T Koshiro
437
+ * ggraph.rb: Added an option 'tonb' to GGraph.tone
438
+ Thu Feb 17 2011 T Horinouchi
439
+ * lib/numru/ganalysis/met.rb : Added an RDoc documentation.
440
+ Sat Feb 12 2011 T Horinouchi
441
+ * added new files lib/numru/ganalysis/planet.rb
442
+ and lib/numru/ganalysis/met.rb (created in Jan, actually).
443
+ * They define modules NumRu::GAnalysis::Planet and
444
+ NumRu::GAnalysis::Met, unlike other files in GAnalysis
445
+ that define module functions directory under GAnalysis.
446
+ * So far, these modules have only limited capabilities.
447
+ (lead by my own necessity)
448
+ * lib/numru/ganalysis.rb: modified to require these files.
449
+ Wed Jan 19 2011 T Horinouchi
450
+ * interpo.c: debug to prevent invalid array access
451
+ Tue Jan 18 2011 T Horinouchi
452
+ * lib/numru/gphys/assoccoords.rb: added attr_reader :axlens.
453
+ Introduced legnth consistency check in the constructor.
454
+ * lib/numru/gphys/grid.rb: Grid#set_assoc_coords: Added
455
+ legnth consistency check.
456
+ Mon Jan 17 2011 T Horinouchi
457
+ * lib/numru/derivative.rb: Supported cyclic extension etc.
458
+ * lib/numru/gphys/derivative.rb: Supported cyclic extension etc
459
+ (with an option to automatically judge whether cyclic).
460
+ Unified codes of cderiv and threepoint_O2nd_deriv.
461
+ Added a new optional argument 'altcoord' to them.
462
+ * lib/numru/gphys/varray.rb: add a method axis_cyclic_extendible?
463
+ * lib/numru/gphys/axis.rb: add a method cyclic_extendible?
464
+ Mon Jan 17 2011 T Horinouchi
465
+ * lib/numru/ggraph.rb: added a new option map_rsat to the fig
466
+ method. This parameter sets RSAT of DCL's SGPPACK for itr==30.
467
+ * lib/numru/gphys/gphys_fft.rb: made new methods:
468
+ phase_velocity_filter, phase_velocity_binning, and
469
+ phase_velocity_binning_iso_norml.
470
+ Fri Jan 14 2011 S Takehiro < T Tanigawa
471
+ * bin/gpview: option --operation implemented
472
+ Thu Jan 13 2011 S Otsuka
473
+ * lib/numru/gphys/gphys_nusdas_io.rb: z* levels are computed
474
+ and added to assoc_coords
475
+ Wed Oct 6 2010 S Nishizawa
476
+ * lib/numru/ganalysis/eof.rb: changed to sort eof modes with eigen value when GSL is used
477
+ Wed Oct 6 2010 S Nishizawa
478
+ * lib/numru/ganalysis/eof.rb: added rdoc document for #eof method
479
+ Tue Oct 5 2010 S Otsuka
480
+ * lib/numru/ganalysis/covariance.rb: missing value was not correctly treated.
481
+ * lib/numru/ggraph.rb: the function to display EOF modes is moved to
482
+ a new method add_mode_vectors.
483
+ Tue Oct 5 2010 T Horinouchi
484
+ * lib/numru/gphys/gphys.rb: added methods set_lost_axes
485
+ and add_lost_axes, which are redirected to @grid.
486
+ * interpolate.rb: to inherit the lost_axes info
487
+ * lib/numru/ggraph.rb:
488
+ * test part : added a sample plot of color_scatter;
489
+ changed to show page numbers
490
+ * GGraph::scatter, GGraph::color_scatter : modified
491
+ not to loose the lost_axes info.
492
+ Mon Oct 4 2010 S Otsuka
493
+ * lib/numru/ganalysis/eof.rb: a new function eof2 is added.
494
+ Mon Oct 4 2010 T Horinouchi
495
+ * lib/numru/ggraph.rb: added sample plots of GGraph::scatter
496
+
497
+ Mon Sep 13 2010 S Otsuka
498
+ * lib/numru/ggraph.rb: scatter / color_scatter are modified
499
+ to use all elements in gphys objects (not the first 1D).
500
+ color_scatter is modified to use DCL::uemrkz.
501
+ Additional functions (displaying EOF modes and
502
+ correlation coefficient) for scatter / color_scatter are
503
+ copied from the scatter method in Gfdnavi (experimental).
504
+ * lib/numru/ganalysis/covariance.rb: a typo is fixed.
505
+ * README: the install guide is updated.
506
+ Tue Sep 7 2010 T Horinouchi
507
+ * doc/: updated
508
+ * lib/numru/ggraph.rb: document updated
509
+ Mon Sep 6 2010 S Otsuka
510
+ * lib/numru/gphys/gphys_io_common.rb: fix a
511
+ bug in each_along_dims_write which occurs when
512
+ more than two files are specified for output.
513
+ Wed Aug 4 2010 T Horinouchi
514
+ * lib/numru/gphys/unumeric.rb: added class methods
515
+ supported_calendar? and supported_calendars
516
+ * lib/numru/ggraph.rb: not to show calendar-based axes
517
+ if the time variable has the attribute "calendar"
518
+ and its value is not suppored in UNumeric.
519
+ Wed Aug 4 2010 T Horinouchi
520
+ * lib/numru/gphys/unumeric.rb: UNumeric#to_datetime,
521
+ UNumeric::from_date: changed to return nil, rather
522
+ than to raise an exception, if the calendar speficied is
523
+ not supported
524
+ * lib/numru/gphys/axis.rb: Axis#[]:
525
+ to handle nil from UNumeric#to_datetime when @@humane_message
526
+ * lib/numru/gphys/gtool3.rb: Gtool3#interpret_time_axis:
527
+ to handle nil from UNumeric#to_datetime
528
+ Mon Aug 2 2010 T Horinouchi
529
+ * lib/numru/gphys/unumeric.rb: added "gregorian" and "standard"
530
+ as synonims of the default calendar (case when nil -->
531
+ case when nil, "gregorian", "standard").
532
+ Tue Jul 27 2010 T Horinouchi
533
+ * lib/numru/gphys/unumeric.rb : correction for Ruby 1.9:
534
+ to deal with a new feature of DateTime#parse, which interprets
535
+ 1- or 2-digit years (e.g. 1, 02) as in 2000's (e.g., 2001, 2002
536
+ -- In Ruby 1.8, these were simply interpreted as years
537
+ 1 and 2, which is the behavior we need.)
538
+ Wed Jul 21 2010 S Nishizawa
539
+ * lib/numru/ganalysis/eof.rb
540
+ * changes for update of ruby-lapack
541
+ * change options
542
+ Fri Jul 16 2010 Y SASAKI
543
+ * bin/gpview, bin/gpvect: add option "--clrmap" to select
544
+ colormap.
545
+ Mon Jun 28 2010 T Horinouchi
546
+ * interpo.c: debug -- multi-dimensional 1D interpolation.
547
+ * interpo_find_loc_1D_MD: for dimc < rank-1
548
+ * interpo_do: index counting for mtyp>=3
549
+ Tue May 18 2010 S Otsuka
550
+ * lib/numru/ganalysis/histogram.rb : Some parameters added
551
+ for 1D histogram.
552
+ Mon May 17 2010 T Horinouchi
553
+ * lib/numru/gphys/assoccoords.rb : slight change to suppress
554
+ a warning in a (sub?) version of ruby 1.8.7
555
+ Wed Apr 21 2010 T Horinouchi
556
+ * interpo.c: made "find loc" methods available outside GPhys as
557
+ class methods (interpo_find_loc_1D, interpo_find_loc_1D_MD).
558
+ Sun Apr 04 2010 S Nishizawa
559
+ * multibitIO.c : add String#to_uint{1,2,3} methods
560
+ * lib/numru/gphys/grib.rb : change to use String#to_uint{1,2,3}
561
+ Wed Mar 31 2010 S Nishizawa
562
+ * multibitIO.c
563
+ * raise exception when input file name is invalid
564
+ * fix memory leak
565
+ * lib/numru/gphys/grib.rb : changed to use MultibitIO
566
+ Wed Mar 31 2010 T Horinouchi
567
+ * multibitIO.c : changed: module MultibitIO -> class MultibitIO
568
+ * test/test_multibitIO.rb : changed accordingly
569
+ Tue Mar 30 2010 T Horinouchi
570
+ * multibitIO.c : newly added. IO of multibit numbers. Defines
571
+ a module MultibitIO and its module function read2D.
572
+ * test/test_multibitIO.rb : a sample source to use MultibitIO
573
+ * test/mltbit.dat : test data used by test_multibitIO.rb
574
+ * ext_init.c : updated to the initializer in multibitIO.c
575
+ Thu Mar 26 2010 T Horinouchi
576
+ * lib/numru/gphys/grib.rb: changed the type of narray to read
577
+ in: float (=double) -> sfloat
578
+ Sat Mar 20 2010 S Nishizawa
579
+ * lib/numru/gphys.grib.rb: modification for efficiency
580
+ Thu Mar 16 2010 S Nishizawa
581
+ * lib/numru/gphys/grib.rb: "hoge".hex to 0xhoge
582
+ * lib/numru/gphys/grib_params.rb: add variable of VBDSF (No.166) to the JMA table
583
+ Mon Mar 15 2010 T Horinouchi
584
+ * lib/numru/gphys/grib.rb: update for Ruby 1.9
585
+ (in response to a change in String#[])
586
+ Fri Feb 26 2010 S Otsuka
587
+ * lib/numru/ggraph.rb: bugfix on options in tone_and_contour
588
+ Mon Feb 21 2010 T Horinouchi
589
+ * gphys-1.0.0 re-released (sory about that)
590
+ * install.rb added again after removal
591
+ Fri Feb 19 2010 T Horinouchi
592
+ * gphys-1.0.0 released (cvs tag gphys-1_0_0)
593
+ Fri Feb 19 2010 R Mizuta
594
+ * lib/numru/gphys/grads_gridded.rb: speed up of reading file
595
+ Fri Feb 19 2010 T Horinouchi
596
+ * lib/numru/gphys/gphys.rb : added a new method GPhys#eddy
597
+ (which must have been frequently defined by users :-p )
598
+ * install.rb : removed from repository
599
+ * lib/numru/interpolate.rb: cleaned up (removed unnecesary comment-
600
+ outs)
601
+ Thu Feb 18 2010 T Horinouchi
602
+ * lib/numru/interpolate.rb: GPhys#interpolate supported data missing
603
+ * interpo.c: interpo_do (c_interpo_do) supported data missing
604
+ Thu Feb 18 2010 T Horinouchi
605
+ * lib/numru/interpolate.rb:
606
+ * added a new method GPhys#regrid
607
+ * GPhys#interpolate: supported conversion of coordinate units
608
+ Thu Feb 18 2010 T Horinouchi
609
+ * lib/numru/gphys/varraycomposite.rb : VArrayComposite#val changed
610
+ not to depend on ntype
611
+ * lib/numru/gphys/gphys.rb : GPhys.each_along_dims changed
612
+ not to depend on ntype
613
+ * lib/numru/ggraph.rb: GGraph::level_chval_fmt improved judgement
614
+ of least_order
615
+ Thu Feb 11 2010 T Horinouchi
616
+ * lib/numru/interpolate.rb: very minor change
617
+ Wed Feb 10 2010 T Horinouchi
618
+ * lib/numru/gphys/assoccoords.rb : minor change in AssocCoords#merge
619
+ Fri Feb 5 2010 T Horinouchi
620
+ * sample/ncep_theta_coord.rb : [newly added] a sample
621
+ of GPhys#interpolate
622
+ * lib/numru/dcl_mouse.rb: [newly added] defines classes
623
+ DCLMousePt and DCLMouseLine to capture mouse click on
624
+ the DCL viewport.
625
+ * lib/numru/interpolate.rb:
626
+ * added new methods GPhys#mouse_cut GPhys#mouse_cut_repeat
627
+ * mouse_cut: makes a subset interactively by specifying
628
+ a (poly-)line on the DCL window
629
+ * mouse_cut_repeat: interpolation onto grid points
630
+ specified by the previous call of GPhys#mouse_cut
631
+ * minor change in dimension ordering.
632
+ * to accept values with missing (but data missing treatment
633
+ has not been supported -- currently just ignored).
634
+ * interpo.c: debug
635
+ * lib/numru/gphys/grid.rb: set_axis was changed to renew the axis name
636
+ Thu Feb 4 2010 T Horinouchi
637
+ * lib/numru/interpolate.rb, interpo.c: coverage broadened / debug
638
+ Mon Feb 1 2010 T Horinouchi
639
+ * lib/numru/interpolate.rb: [newly added] defines
640
+ a new method GPhys#interpolate in a separate file.
641
+ (Wide-purpose multi-dimensional linear interpolation)
642
+ * interpo.c: [newly added] C extension to support
643
+ GPhys#interpolate. This file provides only private methods.
644
+ * ext_init.c: Modfied to call the initiation method in
645
+ interpo.c.
646
+ * lib/numru/gphys.rb: Modified to require numru/gphys/interpolate;
647
+ Also, to require numru/gphys_ext is made mandatory (from optional).
648
+
649
+ Fri Jan 29 2010 T Horinouchi
650
+ * lib/numru/grid.rb: added a new method coord_dim_indices
651
+ (test part is written in lib/numru/assoccoords.rb)
652
+
653
+ Wed Jan 13 2010 T Horinouchi
654
+ * lib/numru/ggraph.rb: added a new method color_scatter
655
+ (to draw a scatter diagram colored by values)
656
+
657
+ Tue Jan 05 2010 T Horinouchi
658
+ * lib/numru/ggraph.rb: added a new method scatter
659
+ (to draw a scatter diagram)
660
+
661
+ Wed Sep 30 2009 S Takehiro
662
+ * bin/gpvect: option --nocolorbar and --nozero added.
663
+ Fri Aug 7 2009 M Horikawa
664
+ * lib/numru/gphys/gphys_hdfeos5_io.rb: _sw_open bug fix
665
+ * lib/numru/ggraph.rb: profile,timeplot were modified.
666
+ Wed Jul 29 2009 S Otsuka
667
+ * lib/numru/gphys/grads_gridded.rb: bug fix (the previous version could not interpret a specific expression of TDEF in GrADS ctl such as 12Z30APR2008)
668
+
669
+ Mon Jul 27 2009 T Koshiro
670
+ * lib/numru/ggraph.rb: DCLExt.color_bar
671
+ * added a new option "inffact": to specify the factor to change the
672
+ length of triangle on the side for infinity (relative to 'vwidth').
673
+ * added a new option "units_voff" and "title_voff": to specify the
674
+ offset value from the default position in the V coordinate.
675
+ * changed default position of units and default character size of
676
+ title.
677
+ * bug fix for "log"=>true.
678
+
679
+ Wed Jul 22 2009 S Otsuka
680
+ * lib/numru/gphys/gphys_nusdas_io.rb: bug fix
681
+
682
+ Wed Jul 8 2009 T Koshiro
683
+ * lib/numru/ggraph.rb: GGraph::axes
684
+ options "xmaplabel","ymaplabel": default values are changed
685
+
686
+ Thu Jul 2 2009 T Horinouchi
687
+ * gphys-0.7.0 re-released (cvs tag gphys-0_7_0)
688
+ * lib/numru/gphys/narray_ext.rb : _dump / _load implementation
689
+ was modified.
690
+ Thu Jul 2 2009 T Horinouchi
691
+ * gphys-0.7.0 released (cvs tag gphys-0_7_0)
692
+ * lib/numru/gphys/gphys.rb : made the #marshal_load and
693
+ #marshal_dump methods public. Added test code of them
694
+ * lib/numru/gphys/narray_ext.rb : Newly created. To support
695
+ marshaling.
696
+
697
+ Thu Jul 2 2009 S Nishizawa
698
+ * lib/numru/gphys/gphys.rb : add #marshal_load and #marshal_dump methods
699
+
700
+ Thu Jul 2 2009 T Horinouchi
701
+ * lib/numru/vizshot.rb : removed (moved into the new
702
+ project gfdnavi_utils)
703
+
704
+ Wed Jul 1 2009 T Horinouchi
705
+ * lib/numru/gphys/gtoo3.rb, varraygtool3.rb : minor bug fix
706
+ * lib/numru/ggraph.rb : added the "auto" option to GGraph::tone
707
+ * lib/numru/gphys.rb : to require "gphys_ext" if installed
708
+
709
+ Mon May 18 2009 S Otsuka
710
+ * lib/numru/gphys/varraynetcdf.rb:
711
+ a bug fix to prevent endless loop
712
+
713
+ Wed May 6 2009 R Mizuta
714
+ * lib/numru/gphys/grads_gridded.rb:
715
+ tentatibe support for "pdef"
716
+ Tue Apr 28 2009 A tomobayashi
717
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
718
+ enable to read Zonal Average structure.
719
+ * lib/numru/gphys/varrayhdfeos5.rb:
720
+ make a new class "VArrayHE5ZaField".
721
+
722
+ Mon Apr 27 2009 T Horinouchi
723
+ * lib/numru/gphys/gphys_io.rb: added a new method
724
+ GPhys::IO.str2gphys.
725
+ * lib/numru/ggraph.rb:
726
+ * ggraph methods (contour etc): enhanced to accept strings
727
+ to specify a GPhys -- Longer need to call GPhys::IO.open
728
+ in advance
729
+ * ggraph methods (contour etc): added new options "slice",
730
+ "cut", and "mean" -- this is to supplement the enhancement
731
+ above. Also, one can unify subsetting calls for the 2
732
+ vector components.
733
+ * eliminated unsed options (don't know why they are introduced)
734
+ * tone: added the "color_bar" option for quick look.
735
+ -- for full control, you should still use GGraph.color_bar
736
+ separately.
737
+
738
+ Mon Apr 27 2009 T Horinouchi
739
+ * Added a gtool3 support
740
+ * Added files: gtool3.rb, gphys_gtool3_io.rb, gphys_gtool3_io.rb
741
+ (in lib/numru/gphys/)
742
+ * Note: gtool3.rb is in pure Ruby. Though it's reasonably
743
+ fast, in future I would like to have a C-extension
744
+ library that generally handles regularly structured
745
+ binary files (incl. fortran unformatted files)
746
+ as a common low-level library for GrADS, GRIB, etc.
747
+ * lib/numru/gphys/gphys_io.rb: added the Gtool3 support.
748
+
749
+ Mon Apr 23 2009 A tomobayashi
750
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
751
+ * remove "Regexp" from error message in __interpret_files method.
752
+ Mon Apr 23 2009 A tomobayashi
753
+ * lib/numru/gphys/varrayhdfeos5.rb:
754
+ * replace get_att_names method to att_names.
755
+ Mon Apr 20 2009 A tomobayashi
756
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
757
+ * corrected an error message for truely multidimensional longitudes/latitudes.
758
+ * has_swath? and has_grid? methods come to be used again.
759
+ Thu Apr 16 2009 A tomobayashi
760
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
761
+ corrected how to select variables for making axes in reading grid structure.
762
+ Mon Apr 13 2009 T Horinouchi
763
+ * lib/numru/gphys/attribute.rb: made the methods merge and update
764
+ public
765
+ * lib/numru/gphys/varray.rb, lib/numru/gphys/varraycomposite.rb
766
+ * debug : TypeErroor --> TypeError in a raise call
767
+ (varray.rb)
768
+ * minor change in a private method __ntype (to take typecode
769
+ directly as the argument rather than to call arg.typpecode
770
+ inside) (varray.rb, varraycomposite.rb)
771
+ Tue Apr 7 2009 A Tomobayashi
772
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
773
+ enable to read Grid structure.
774
+ * lib/numru/gphys/varrayhdfeos5.rb:
775
+ make a new class "VArrayHE5GdField".
776
+ Thu Mar 6 2009 M Horikawa
777
+ * changed struct HE5SwField (VALUE file -> VALUE swath)
778
+ Tue Jan 20 2009 R Mizuta
779
+ * lib/numru/gphys/axis.rb, unumeric.rb, grads_gridded.rb:
780
+ support 365_day calendar (i.e. no leap year) for NetCDF and GrADS
781
+ * lib/numru/ggraph.rb:
782
+ support 365_day calendar for time axis
783
+ Sun Dec 14 2008 S Takehiro
784
+ * bin/gpview: --mark option implemented
785
+ Fri Aug 01 2008 S Otsuka
786
+ * lib/numru/ggraph.rb: ruby 1.9 compatibility
787
+ Mon Jul 14 2008 T Horinouchi
788
+ * lib/numru/gphys/varrayhdfeos5.rb: to use HE5SwField#get_att
789
+ instead of HE5SwField#att (which was deprecated).
790
+ Thu Jul 17 2008 S Otsuka
791
+ * extconf.rb: code for cygwin added.
792
+ Thu Jul 17 2008 S Otsuka
793
+ * lib/numru/gphys/attribute.rb: ruby 1.9 compatibility
794
+ Mon Jul 14 2008 T Horinouchi
795
+ * lib/numru/ggraph.rb: definition of @@[line|mark|vector]_options
796
+ were moved outside the [line|mark|vector] methods.
797
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
798
+ * HE5_IO::open (actually HE5_IO::_sw_open) was modified
799
+ to use AssocCoords
800
+ * lib/numru/gphys/grid.rb:
801
+ * deprecated unused methods
802
+ exclude, change_axis!, insert_axis, insert_axis!
803
+ * added assoc coord support to Grid#transpose
804
+ Grid#change_axis, Grid#delete_axes
805
+ * lib/numru/gphys/assoccoords.rb: addde a new method
806
+ AssocCoords#subset_having_axnames
807
+ Mon Jul 14 2008 T Horinouchi
808
+ * lib/numru/gphys/grid.rb: added Grid#cut_assoccoord
809
+ * lib/numru/gphys/gphys.rb: GPhys#cut : support assoc coords --
810
+ when the argument is a Hash, one can specify associated
811
+ coordinates as well as the regular axes.
812
+ * lib/numru/gphys/assoccoords.rb: addition was made to the test part
813
+ * lib/numru/ggraph.rb: addition was made to the test part
814
+ Sat Jul 12 2008 T Horinouchi
815
+ * lib/numru/gphys/varrayhdfeos5.rb : VArrayHE5SwField#shape
816
+ was improved in response to the debug of ruby-hdfeos5
817
+ Sat Jul 12 2008 T Horinouchi
818
+ * lib/numru/gphys/netcdf_convention.rb : started CF convention
819
+ support, which is set to be the default convention.
820
+ * lib/numru/gphys/gphys_netcdf_io.rb : supported assoc coords
821
+ * lib/numru/gphys/grid.rb,lib/numru/gphys/gphys.rb : minor update
822
+ * lib/numru/gphys/assoccoords.rb: added some methods
823
+ * testdata/assoc_crds.nc : added (renamed output from
824
+ assoccoords.rb)
825
+ Sat Jul 12 2008 T Horinouchi
826
+ * lib/numru/ggraph.rb:
827
+ * Refactoring of GGraph::vector :
828
+ shortened by using axes_or_map_and_ttl.
829
+ * introduced data_prep_2D and data_prep_1D to do common
830
+ works in graphic methods.
831
+ * Many changes to support itr==51
832
+ Fri Jul 11 2008 T Horinouchi
833
+ * lib/numru/gphys/grid.rb:
834
+ * to use AssocCoords, along with many new methods such as
835
+ set_assoc_coords
836
+ * made Grid#coord
837
+ * lib/numru/gphys/gphys.rb:
838
+ * GPhys#coord was changed to simply use Grid#coord
839
+ * made many methods to be forwared to the new methods of Grid
840
+ * Changed GPhys#grid to be public (it has been protected),
841
+ since a grid is not just a container of axes any more.
842
+ But forwarding will be continued. So basically,
843
+ it would not be needed to use it.
844
+ * lib/numru/gphys/assoccoords.rb: test part enhanced, etc
845
+
846
+ Fri Jul 4 2008 T Horinouchi
847
+ * lib/numru/gphys/assoccoords.rb: created -- to support "assocated
848
+ coordinates", which can be multi-dimensional.
849
+ * extconf.rb: created
850
+ * ext_coord.c: created -- extension library to speed up coordinate handling
851
+ * ext_init.c: created -- just a starter of extention libraries
852
+
853
+ Wed Jul 2 2008 T Horinouchi
854
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
855
+ * Introduced PredefCoordNames, from which GPhys::HE5_IO::open
856
+ select coordinate variables if found. Also, it was
857
+ changed to look for 1D data fields if no geolocation
858
+ field for a dimension is found.
859
+ * Changed according to the recent change in hdfeos5.rb
860
+ (HE5SwField#dim_names was reversed)
861
+ Tue Jul 1 2008 T Horinouchi
862
+ * lib/numru/gphys/varrayhdfeos5.rb: Changed not to do buffering --
863
+ This part was for NetCDF, which has the define mode and
864
+ the data mode. I do not know whether a similar buffering
865
+ would be desirable or not.
866
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
867
+ * A minor refactoring of IO::write
868
+ * Edited the test part at the bottom of the file
869
+ * Now it passes!
870
+ * But, actually, I have commented out a latter half of it.
871
+ Tue Jul 1 2008 T Horinouchi
872
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
873
+ * Refactoring of HE5_IO::open -- the behavior should
874
+ be identical, but the source has got much shorter.
875
+ (This is to prepare for modification to improve.)
876
+ * Refactoring of HE5_IO::open : Division was made for
877
+ each grid type. Now the main part of the old open
878
+ is separated in the private method _sw_open
879
+ Tue Jul 1 2008 T Horinouchi
880
+ * lib/numru/gphys/gphys_hdfeos5_io.rb:
881
+ * change due to a debug of hdfeos5.rb (swath_names? --> swath_names)
882
+ * Changed the delimiter between swath names and variable names
883
+ from "." to "/"
884
+ * lib/numru/gphys/gphys_io.rb:
885
+ * file2type : to support HE5Sw in addition to HE5
886
+ Tue Apr 22 2008 T Horinouchi
887
+ * gphys_io.rb: Changed to make the HDF-EOS5 support optional:
888
+ get around the load error of the HDF-EOS5 interface
889
+ (NumRu::HE5).
890
+ Tue Apr 22 2008 M Horikawa
891
+ * lib/numru/gphys/gphys_hdfeos5_io.rb: added for hdfeos5
892
+ * lib/numru/gphys/varrayhdfeos5.rb: added for hdfeos5
893
+ * lib/numru/gphys/gphys_io.rb: modified for hdfeos5
894
+ * lib/numru/ggraph.rb: added new methods profile, timeplot
895
+ modified @@contour_options, @@tone_options
896
+ * lib/numru/vizshot.rb: added new methods profile, timeplot
897
+ Fri Apr 4 2008 T Horinouchi
898
+ * updated doc/
899
+ Thu Feb 14 2008 S Takehiro
900
+ * bin/gpview: option --nocolorbar and --nozero added.
901
+
902
+ Thu Mar 1 2008 T Horinouchi
903
+ * gphys-0.6.1 released (cvs tag gphys-0_6_1)
904
+ Sun Feb 24 2008 S Otsuka
905
+ * lib/numru/gphys/grads_gridded.rb: ruby 1.9 compatibility on windows
906
+ Thu Feb 14 2008 S Takehiro
907
+ * gphys_io.rb: parse_gturl and open_gturl interpret position setting
908
+ as grid numbers rather than physical coordinates
909
+ when the position specifiers begin with "^".
910
+ * gpcommon.rb: copy_global_att can deal with GPhys
911
+ which consists of multiple files.
912
+ Tue Feb 12 2008 R Mizuta
913
+ * axis.rb: changes corresponding to the added methods in unumeric.rb
914
+ Tue Feb 12 2008 S Nishizawa
915
+ * grib.rb : minor change for better performance
916
+ * gphys_nusdas_io.rb : changes for new version of ruby-nusdas
917
+ Mon Feb 11 2008 T Horinouchi
918
+ * unumeric.rb : added a new class method UNumeric::from_date
919
+ and a method UNumeric#to_datetime. Changed UNumeric#strftime
920
+ to use UNumeric#to_datetime.
921
+ Mon Feb 11 2008 T Horinouchi < R Mizuta
922
+ * axis.rb: Axis#cut : to support Date and DateTime
923
+ Mon Feb 11 2008 T Horinouchi
924
+ commited the following changes, which haven't been commited yet
925
+ (latest changes in ggraph.rb were merged):
926
+ Wed Dec 26 2007 T Horinouchi
927
+ * lib/numru/ggraph.rb: GGraph::annotate : added new argument
928
+ noff (nil=default or Integer) to make it suitable to
929
+ consecutive (separate) calls
930
+ * axis.rb : added new class methods Axis.strftime_fmt= and
931
+ Axis.strftime_fmt to specify (or get) the format of strftime
932
+ used in Axis#[]
933
+ * unumeric.rb : added new method strftime.
934
+
935
+ Fri Feb 8 2008 S Otsuka
936
+ * install.rb: ruby 1.9 compatibility
937
+ * lib/numru/gphys/axis.rb: ruby 1.9 compatibility
938
+ * lib/numru/gphys/subsetmapping.rb: ruby 1.9 compatibility
939
+ * lib/numru/gphys/gphys_io.rb: ruby 1.9 compatibility
940
+ * lib/numru/gphys/varraycomposite.rb: ruby 1.9 compatibility
941
+ * lib/numru/gphys/grib.rb: ruby 1.9 compatibility
942
+ Fri Feb 8 2008 T Koshiro
943
+ * ggraph.rb: DCLExt.color_bar: bug fix for drawing bar frame
944
+ Fri Feb 8 2008 T Koshiro
945
+ * ggraph.rb: DCLExt.color_bar: added a new option "labels_ud":
946
+ to specify user-defined labels for replacing the default labels
947
+ (Array of String)
948
+ Thu Feb 7 2008 T Koshiro
949
+ * ggraph.rb: DCLExt.color_bar: added new options and fixed bugs.
950
+ * added new option: "title", "units", and "charindex"
951
+ * no tick lines are drawn if opt["tickintv"] == 0
952
+ * no labels are drawn if opt["labelintv"] == 0
953
+ * option "index" is validated for frame and tick lines regardless of opt["constwidth"] setting
954
+ * fixed the length of the color bar with opt["constwidth"] == true
955
+ * fixed other small bugs
956
+ Wed Jan 30 2008 R Mizuta
957
+ * grads_gridded.rb: bug fix for reading sequential binary file.
958
+ * varraygrads.rb: minor bug fix for writing control file.
959
+
960
+ Tue Dec 25 2007 T Horinouchi
961
+ * lib/numru/ggraph.rb: added new options.
962
+ * GGraph.fig: eqdistvpt, round0, round1
963
+ * GGraph.line, GGraph.mark: map_axes
964
+ * in doing so, introduced a new method axes_or_map_and_ttl,
965
+ which is now commonly called in contour, tone, mark & line.
966
+ Fri Dec 14 2007 S Nishizawa
967
+ * lib/numru/gphys/gphys_nusdas_io.rb: added for nusdas
968
+ * lib/numru/gphys/varraynusdas.rb: added for nusdas
969
+ * lib/numru/gphys/gphys_io.rb: modified for nusdas
970
+ Mon Dec 3 2007 T Horinouchi
971
+ * lib/numru/ggraph.rb: improvement in GGraph::fig: To avoid
972
+ the internally defined DCL window to have xmin==xmax or ymin==ymax.
973
+ * varray.rb: improvement for NArray_type3_methods : not to fail
974
+ if the result is nil.
975
+ Mon Dec 3 2007 T Horinouchi < S Nishizawa
976
+ * lib/numru/vizshot.rb: revised VizShot#plot not to fail with opendap
977
+ Tue Nov 27 2007 T Horinouchi
978
+ * lib/numru/vizshot.rb: supported extensions, thanks to S. Nishizawa
979
+ Tue Nov 27 2007 T Horinouchi
980
+ * gphys.rb: added a new method first3D
981
+
982
+ Thu Oct 25 2007 R Mizuta
983
+ * grads_gridded.rb: bug fix for template in the grads control file.
984
+ Tue Aug 28 2007 T Horinouchi < dennou-ruby:002830
985
+ * ggraph.rb: (debug) DCLExt.color_bar: to call DCL.uwsgxz(false)
986
+ and DCL.uwsgyz(false) after calling DCL::uwsgxa and DCL::uwsgya.
987
+ Thu Aug 16 2007 T Horinouchi
988
+ * gphys-0.6.0 released (cvs tag gphys-0_6_0)
989
+ Tue Aug 14 2007 T Horinouchi
990
+ * ggraph.rb: DCLExt::level_chval_fmt : improved the automatic
991
+ label-format determination algorithm for |dx|<1e-6
992
+ (essentially a debug).
993
+ Fri Jul 27 2007 T Horinouchi
994
+ * gdir.rb: fixed bugs in list_*_v when called with a path argument.
995
+ Thu Jul 26 2007 T Horinouchi
996
+ * gphys_netcdf_io.rb, gphys_io.rb: to make a record in the NetCDF
997
+ global attribute 'history' in each_along_dims_write. (Before that,
998
+ history recording is made only with the write method.)
999
+ Thu Jul 26 2007 T Horinouchi
1000
+ * gphys_netcdf_io.rb: NetCDF_IO::write : changed to write command
1001
+ name (File.basename($0)), rather than the method name, to the
1002
+ global attribute 'history'.
1003
+ Wed Jul 25 2007 T Horinouchi
1004
+ * ggraph.rb: improved default color-bar labeling for log-scale:
1005
+ to simply use chval format 'b', rather than using
1006
+ level_chval_fmt, which is optimized for equal spacing.
1007
+ * subsetmapping.rb: improved an error message.
1008
+ Tue Jul 24 2007 T Horinouchi
1009
+ * axis.rb: added a new class method Axis.humane_message=
1010
+ to disable the humane messaging by [] (By defalut,
1011
+ lost time axis info is expressed in a chronological
1012
+ yyyy-mm-... form, which may be unwanted.)
1013
+ * subsetmapping.rb: to use Array#values_at instead of
1014
+ Array#indices, which is obsolete and warned in Ruby 1.8.
1015
+ (note: Array#values_at is a ruby 1.8 feature.)
1016
+ * varray.rb: VArray#val: to support negative array index
1017
+ with step (by using Hash) for NArray-type data.
1018
+ Wed Jul 18 2007 Y Morikawa
1019
+ * bin/gpedit: Create or overwrite the attributes of a variable
1020
+ specified by a gtool4-type URL (Only netCDF files are supported).
1021
+ Tue Jul 17 2007 S Takehiro
1022
+ * lib/numru/ggraph.rb: demo for GGraph::vector and 'flow_itr5' option
1023
+ (vector filed plotting on the polar corrdinate) added.
1024
+ Tue Jul 6 2007 S Takehiro
1025
+ * lib/numru/ggraph.rb: optional branch position of 'flow_itr5' and
1026
+ 'flow_vect' are exchanged in GGraph::vector.
1027
+ In GGraph::title, action of the case of itr==5 changed.
1028
+ In flow_itr5, unit_vector option is added.
1029
+ * bin/gpvect: commnad for 2D vector field plotting, optionally with
1030
+ contour/tone of scalar field newly created.
1031
+ Thu Jul 5 2007 R Mizuta
1032
+ * grads_gridded.rb: added support for template %m1,%d1,%h1,%h2,%n2
1033
+ in the control file.
1034
+ * lib/numru/dclext_datetime_ax.rb: bug fixed
1035
+ (save and restore x/yfact, x/yoffset)
1036
+ Tue Jul 4 2007 S Takehiro
1037
+ * lib/numru/ggraph.rb: Added a new method DCLExt.flow_itr5 to draw
1038
+ a 2D vector filed on the polor coordinate. GGraph::vector was
1039
+ modified to call this method.
1040
+ GGraph::vector is fixed to perform the axes exchange before
1041
+ rank inquirey.
1042
+ Tue Jun 26 2007 T Horinouchi
1043
+ * lib/numru/vizshot.rb: Added a new tone_cont option
1044
+ "color_bar_options", which takes options of
1045
+ GGraph::color_bar as a Hash. To test it, try the test menu 6 by
1046
+ % ruby vizshot.rb 6
1047
+ Tue Jun 26 2007 T Horinouchi
1048
+ * lib/numru/vizshot.rb: Added a logarithmic color-bar option:
1049
+ * If a GGraph option 'log' is given to VizShot#tone_cont,
1050
+ it was made to be passed to GGraph::color_bar in addition
1051
+ to GGraph::tone etc.
1052
+ (Therefore, at this moment, only the "log" option
1053
+ of color_bar was supported. I'm also planning to
1054
+ support any color_bar options.)
1055
+
1056
+ Mon Jun 25 2007 T Horinouchi
1057
+ * axis.rb Axis#[]
1058
+ * supported units compatible with "months" (e.g.
1059
+ year, pentad) with since fields.
1060
+ * debug and minor improvement of "day"-compatible
1061
+ units (second,hour,...) with since fields,
1062
+ which was supported on jun 21 2007.
1063
+
1064
+ Thu Jun 21 2007 T Horinouchi
1065
+ * axis.rb Axis#[] : changed the lost-axis descripting
1066
+ string, when the axis is a time one, whose units
1067
+ has a "since" field. In that case, string to be returned
1068
+ was changed to a date time in the form of
1069
+ "%Y-%m-%d %M:%H:%S%z" (formatted by strftime).
1070
+ Thu Jun 21 2007 R Mizuta
1071
+ * grads_gridded.rb: error massage when ctl file and binary
1072
+ are inconsistent.
1073
+ Thu Jun 21 2007 T Horinouchi
1074
+ * ggraph.rb: Added calendar-type time axis support.
1075
+ * Added new option "time_ax" for GGraph::axes, where
1076
+ * nil (defalut): Draws calendar-type time axis if
1077
+ the unit of an axis is time one with the "since"
1078
+ field (such as "hours since 2006-01-01").
1079
+ Auto selects "h" or "ymd" below, depending on the
1080
+ length of the period (current thres: 5 days).
1081
+ * false: Do not use the time axis regardless the units
1082
+ * 'h': When the units allow (see the description for nil),
1083
+ always use the hour-resolving time axis datetime_ax
1084
+ in dclext_datetime_ax.rb)
1085
+ * 'ymd': When the units allow (see the description for nil),
1086
+ always use the y-m-d type axis using DCL.uc[xy]acl.
1087
+ Tue May 22 2007 T Horinouchi
1088
+ * ggraph.rb: Added a new option 'keep' in GGraph::contour,
1089
+ GGraph::tone, GGraph:vector (defalut val: false). If its value
1090
+ is set true, the contour levels / tone levels & patterns /
1091
+ vector scaling, respectively, are set to be the same
1092
+ as in the previous call. GOOD FOR ANIMATION.
1093
+ Also, a minor debug was made in contour -- handling of 'lmsg'
1094
+ in log scaling.
1095
+ Wed May 9 2007 T Horinouchi
1096
+ * gphys.rb: GPhys#average etc (in Axis.defined_operations).
1097
+ debug not to cause error when the result is scalar
1098
+ (to return the scalar itself -- behavior unified with
1099
+ mean etc)
1100
+
1101
+ Tue Apr 24 2007 T Horinouchi
1102
+ * varray.rb: debug in replace_val (replace_val was not effective
1103
+ for subset VArray); added explicit error for VArray subclasses
1104
+ such as VArrayNetCDF.
1105
+ * gphys_fft.rb: added the second argument replace_val to the class
1106
+ method fft_ignore_missing
1107
+ Fri Mar 16 2007 T Horinouchi
1108
+ * axis.rb: debuged the error message string at l.646
1109
+
1110
+ Fri Feb 23 2007 T Horinouchi
1111
+ * gphys-0.5.4 released (cvs tag gphys-0_5_4)
1112
+
1113
+ Mon Dec 12 2006 T Horinouchi
1114
+ * gphys_fft.rb: added a class method fft_ignore_missing: this is
1115
+ to set a flag (class variable) to ignore missing values.
1116
+ This is for data that actually do not have missing
1117
+ but is treated as potentially having missing (often
1118
+ by having the valid_* attributes of NetCDF.)
1119
+
1120
+ Mon Dec 12 2006 T Horinouchi
1121
+ * ggraph.rb:
1122
+ * GGraph.tone,GGraph.contour: Added option 'log'
1123
+ * DCLExt : added new method quasi_log_levels and quasi_log_levels_z
1124
+ (driver of quasi_log_levels with data values)
1125
+ Mon Dec 11 2006 T Horinouchi
1126
+ * ggraph.rb: Added options 'legend' etc to GGraph.line and GGraph.mark
1127
+ to annotate the line/mark type and index (and size if mark).
1128
+ ('legend', 'legend_vx', 'legend_dx' (only for line), 'legend_vy',
1129
+ 'legend_size') By defualt it is shown in the right margin of vpt.
1130
+ 'legend' is a String to show, or true to show the name of the
1131
+ current GPhys object.
1132
+ * DCLExt : added new method legend
1133
+ Fri Nov 24 2006 T Horinouchi
1134
+ * lib/numru/vizshot.rb: debug to allow Regexp in :file & :file2
1135
+ Wed Oct 11 2006 T Horinouchi
1136
+ * ggraph.rb: added documentation for (next|set)_(contour|tone)
1137
+ Wed Oct 11 2006 T Horinouchi
1138
+ * gphys-0.5.3 released (cvs tag gphys-0_5_3)
1139
+ Wed Oct 11 2006 T Horinouchi
1140
+ * ggraph.rb: added new methods set_contour, next_contour,
1141
+ set_tone, and next_tone
1142
+ * lib/numru/vizshot.rb: added new methods set_contour and set_tone
1143
+ Thu Sep 8 2006 T Horinouchi
1144
+ * lib/numru/vizshot.rb: added new methods:
1145
+ * VizShot#add : to add plots in another VizShot non-destructively
1146
+ (also added are protected methods
1147
+ semi_deep_clone, and plots (attr_reader))
1148
+ Thu Aug 31 2006 T Horinouchi
1149
+ * lib/numru/vizshot.rb <-- lib/numru/easyviz.rb : renamed
1150
+ * changed argument spec in execute and (gen|dump)_code*
1151
+ Thu Aug 31 2006 T Horinouchi
1152
+ * lib/numru/easyviz.rb:
1153
+ * added dump_code
1154
+ * multiple frame support
1155
+ * added replace_plot!
1156
+ * support dump_code_and_data
1157
+ * windows -> ms_windows etc
1158
+ Wed Aug 30 2006 T Horinouchi
1159
+ * lib/numru/easyviz.rb: added
1160
+ * testdata/UV.jan.nc: added
1161
+ Mon Aug 28 2006 T Horinouchi
1162
+ * gphys-0.5.2 released (cvs tag gphys-0_5_2)
1163
+ Wed Aug 23 2006 T Horinouchi < T Koshiro [dennou-ruby:002687 & 002690]
1164
+ * ggraph.rb: Applied the patches made by T Koshiro;
1165
+ * 002687: map-fitting (with option 'map_fit') and axes-drawing
1166
+ (with option 'map_axes') were made available
1167
+ simultaneously when itr=10.
1168
+ * 002690: added axis-drwaing options: 'xmaplabel', 'ymaplabel'
1169
+ better axis-labelling when itr==10, with 90E, 90W, etc instead
1170
+ of 90, 270, etc.
1171
+ * Added examples (graph 27-30) in the test part at the bottom.
1172
+ * sample/ggraph_mapfit-axes_dr002687.rb: sample program by koshiro
1173
+ * sample/ggraph_latlon_labelling_dr002690: sample program by koshiro
1174
+ Tue Aug 15 2006 T Horinouchi (ref: [dennou-ruby:002682] from koshiro)
1175
+ * sample/cira86_to_nc.rb: debug
1176
+ * attribute.rb: better error message in Attribue#[]=
1177
+ Tue Aug 15 2006 T Horinouchi (ref: [dennou-ruby:002681] from nishizawa)
1178
+ * gphys.rb: GPhys#each_along_dims
1179
+ * corrected to support NArrayMiss in addition to NArray
1180
+ * the sencond argument is allowed to be an empy array, which
1181
+ is a trivial case with no need for this method but
1182
+ is supported for generality in terms of programming.
1183
+ Tue Aug 15 2006 T Horinouchi
1184
+ * grid.rb: corrected the document for Grid#cut
1185
+ Mon Jul 31 2006 R Mizuta
1186
+ * ggraph.rb: color_bar: support option 'chval_fmt' with using
1187
+ option 'constwidth'.
1188
+ Wed Jun 14 2006 T Horinouchi
1189
+ * gphys.rb: replaced .is_a?(GPhys) with .respond_to?(:grid),
1190
+ since it causes troubles in binary operations through dRuby.
1191
+ Mon May 15 2006 S Nishizawa (logging forgotten; added by horinout on june 14)
1192
+ * grib_params.rb, grib.rb: new parameters added...
1193
+ Fri Mar 24 2006 T Horinouchi
1194
+ * ggraph.rb: added option "no_new_fig" to GGraph::fig. (This made
1195
+ possible to set DCL parameters that are reset by grfrm or grfig
1196
+ such as the uspack parameters d[xy][tl])
1197
+ Tue Mar 7 2006 S Takehiro < M Nakano
1198
+ * bin/gpmaxmin: USAGE Typo fixed.
1199
+ * bin/gpview: option --int bug fixed
1200
+ Wed Dec 14 2005 T Horinouchi < T Koshiro
1201
+ * lib/numru/ggraph.rb: debug in the method axes [dennou-ruby:002541]
1202
+ Thu Nov 17 2005 T Horinouchi
1203
+ * lib/numru/dclext_datetime_ax.rb: debug axis label direction recovery
1204
+ Wed Nov 9 2005 R Mizuta
1205
+ * grads_gridded.rb: support 'byteswapped' option,
1206
+ become classes under NumRu module
1207
+ Mon Nov 7 2005 R Mizuta
1208
+ * grads_gridded.rb, gphys_grads_io.rb: debug in reading variables
1209
+ with different number of vertical levels from ZDEF.
1210
+ * grads_gridded.rb: minor modification in reading
1211
+ Tue Oct 31 2005 S Takehiro
1212
+ * bin/gpview: option --smooth bug fixed.
1213
+ Tue Oct 30 2005 S Takehiro
1214
+ * bin/gpview: --animate option recoverd.
1215
+ Wed Oct 5 2005 T Horinouchi
1216
+ * ggraph.rb: color_bar: enhancement (& debug) of the modification on
1217
+ Sep 27 2005 to support trn > 5
1218
+ Tue Sep 27 2005 T Horinouchi
1219
+ * ggraph.rb: color_bar: to restore viewport, window, and trn at exit,
1220
+ so that one can overlay plots after showing a color bar.
1221
+ Mon Sep 26 2005 T Horinouchi
1222
+ * ggraph.rb: color_bar added option 'chval_fmt' to override the
1223
+ internal automatic setting.
1224
+ * varray.rb: minor modification in binary operations for better
1225
+ error messaging.
1226
+ Tue Sep 13 2005 T Horinouchi
1227
+ * lib/numru/dclext_datetime_ax.rb: added (it was developed
1228
+ separately at ~/davis/WORK/dcl/)
1229
+ Tue Sep 13 2005 T Horinouchi < T Koshiro
1230
+ * grads_gridded.rb: debug in []
1231
+ Mon Sep 12 2005 T Horinouchi
1232
+ * gphys_netcdf_io.rb: added a test for the axis treatment (see below)
1233
+ * axis.rb: added methods Axis#cyclic? and Axis#modulo.
1234
+ * varray.rb: added methods VArray#axis_cyclic? and VArray#axis_modulo.
1235
+ * grid.rb:
1236
+ * refactoring: Grid.new -> self.class.new (for inheritance)
1237
+ * Grid#merge: avoid redunduncy in lost_axes
1238
+ Fri Sep 9 2005 T Horinouchi
1239
+ * gphys-0.5.1 released (cvs tag gphys-0_5_1)
1240
+ Mon Aug 29 2005 T Horinouchi
1241
+ * ggraph.rb: minor improvement when [xy]intv >= 2 (to plot at max
1242
+ num of grid points)
1243
+ Tue Aug 23 2005 S Takehiro
1244
+ * lib/numru/gphys/gpcommon.rb: 'help' method bug fix.
1245
+ Tue Aug 23 2005 S Takehiro
1246
+ * bin/: gpaop craated
1247
+ * bin/gp*, lib/numru/gphys/gpcommon.rb: common methods to bin/gp*
1248
+ command moved to gpcommon.rb.
1249
+ * bin/gpview: multiple Gphys variables plotting and option --var
1250
+ implemented.
1251
+ * bin/gpcut,gpcat,gpaop,gpmath: Global attributes are copied to
1252
+ the output ncfile when the input is NetCDF.
1253
+ Sun Aug 21 2005 S Takehiro
1254
+ * bin/: gpadd, gpsub, gpmulti, gpdiv removed.
1255
+ Sun Aug 21 2005 S Takehiro
1256
+ * bin/: gpadd, gpsub, gpmulti, gpdiv created.
1257
+ Tue Aug 16 2005 T Horinouchi
1258
+ * varray.rb: Added VArray#reshape.
1259
+ * axis.rb: Debug in Axis#integrate (in judgment for prodefined
1260
+ integration weight -- it was never to use a non-default one
1261
+ becasuse of a typo). Added Axis#integ_weigtht(=) and
1262
+ Axis#average_weighte(=)
1263
+ Tue Aug 10 2005 S Takehiro
1264
+ * bin/gpmaxmin: locations having max and min values are displayed.
1265
+ utilize internal function for printing help message.
1266
+ --all, --index, --number options added.
1267
+ * bin/gpcat, gpcut, gpmath, gpprint, gplist: utilize internal
1268
+ function for printing help message.
1269
+ Tue Aug 9 2005 T Horinouchi
1270
+ * doc/: updated
1271
+ Tue Aug 9 2005 S Takehiro
1272
+ * bin/gpview: add option --help and help function < T Horinouchi,
1273
+ URL information corrected.
1274
+ Tue Aug 9 2005 T Horinouchi
1275
+ * ggraph.rb: contour,tone,vector: debug in the cyclic extention
1276
+ handling for itr==5.
1277
+ * ggraph.rb: contour,tone,vector: added option 'exchange', which
1278
+ is a synonym for 'transpose'.
1279
+ Sat Aug 7 2005 S Takehiro
1280
+ * bin/gpmaxmin: parse_gturl removed.
1281
+ * bin/gpview: option --overplot implemented.
1282
+ Fri Aug 5 2005 T Horinouchi
1283
+ * grid.rb: Grid#ax_dim (protected method) changed to allow
1284
+ negative dimension
1285
+ * install.rb: takehiro modification corrected
1286
+ Wed Jul 27 2005 T Horinouchi < M Nakano
1287
+ * ggraph.rb: debug vector (to use yintv for y-axis)
1288
+ Thu Jul 21 2005 T Horinouchi
1289
+ * bin/gdir_client: RD document commented out
1290
+ * doc/index.rd: a link error corrected (gdir)
1291
+ * doc/ updated
1292
+ * lib/numru/gdir.rb:
1293
+ * rd document changed a bit
1294
+ * GDir#initialize : debug in abspath setting
1295
+ Wed Jul 20 2005 S Takehiro
1296
+ * recover install.rb from that for debian packaging.
1297
+ Wed Jul 15 2005 S Takehiro
1298
+ * bin/gpview: option --noannotate implemented.
1299
+ * bin/gpcut,gpmaxmin,gpmath: open_gturl method is used
1300
+ for opening gphys variable.
1301
+ Wed Jul 13 2005 T Horinouchi
1302
+ * varray.rb: eliminate an error in binary operations when data without
1303
+ missing is on the lefthand and data with missing is on the righthand.
1304
+ Thu Jun 30 2005 T Horinouchi
1305
+ * gphys.rb : re-activated the correction disabled on June 21.
1306
+ Wed Jun 23 2005 S Takehiro
1307
+ * bin/gpview: debug, option --title implemented.
1308
+ Wed Jun 22 2005 T Horinouchi
1309
+ * ggraph.rb: DCLExt::color_bar : labeling improved -- to show
1310
+ more digits if needed (for levels such as 1001,1002,1003,..).
1311
+ (It was left to the uxypak default, chval fmt 'b', which uses only 3)
1312
+ Tue Jun 22 2005 S Takehiro
1313
+ * bin/gpview: debug, clipping control added to GGraph::annotate.
1314
+ Tue Jun 21 2005 T Horinouchi
1315
+ * doc/ updated.
1316
+ * <lib/numru/gdir.rb: modified to accept DODS URLs by using
1317
+ lib/numru/htdir.rb (see below).
1318
+ * lib/numru/htdir.rb: Created.
1319
+ class NumRu::GDir::HtDir : A class to treat the URL of a
1320
+ "directory" as a directory, with a special interpretation for DODS
1321
+ URL if requested.
1322
+ * gphys_io.rb: GPhys::IO::file2type modified to treat URLs
1323
+ starting with 'http://' as NetCDF, hoping that it is treated
1324
+ as DODS extention of the NetCDF
1325
+ Tue Jun 21 2005 T Horinouchi
1326
+ * bin/gplist: modfied to use GDir
1327
+ * doc/ updated
1328
+ * bin/gdir_client: RD document added.
1329
+ Fri Jun 21 2005 S Takeshiro
1330
+ * bin: gpcut, gpcat, gplist, gpmath, gpmaxmin are created.
1331
+ * doc: gpcut.html, gpcat.html, gplist.html, gpmath.html,
1332
+ gpmaxmin.html are created.
1333
+ * doc/, bin/: gpcut, gpmaxmin comment fixed.
1334
+ Tue Jun 21 2005 T Horinouchi
1335
+ * gphys.rb : *temporarily* disabled the modification on Jun 16:
1336
+ >> not to take
1337
+ >> na_other = self.data.val.fill(other)
1338
+ >> which is inefficitent. But this would require a
1339
+ by re-activating l.636 (be removing comment-out chars).
1340
+ Plus, a minor debug of an enbug on Jun 16.
1341
+ Fri Jun 17 2005 T Horinouchi < S Takeshiro
1342
+ * bin/gpview: debug [dennou-ruby:002321], [dennou-ruby:002328(7)]
1343
+ Thu Jun 16 2005 T Horinouchi
1344
+ * gphys.rb : GPhys#coerce modified
1345
+ * not to take
1346
+ na_other = self.data.val.fill(other)
1347
+ which is inefficitent. But this would require a
1348
+ future new version of NArrayMiss (later than 1.1.1)
1349
+ * set nil to units of a Numric/NArray for
1350
+ correct units handling bor both add/sub and mlt/div (see below).
1351
+ * varray.rb :
1352
+ * Binary_operators_Uconv (+,-,add!,sbt!) : to use other's units
1353
+ if 'units' attribute is emtpy (nil), rather than interpreting
1354
+ it as '1' (non-dimension).
1355
+ * collect a typo: sub!(which is non-exitent in NArray) --> sbt!
1356
+ * grid.rb : added Grid#merge
1357
+ Wed Jun 15 2005 T Horinouchi < S Takeshiro
1358
+ * bin/gpprint: debug [dennou-ruby:002321]
1359
+ Mon Jun 6 2005 T Horinouchi < S Otsuka
1360
+ * gphys_netcdf_io.rb: modified the edition of NetCDF_IO::open just
1361
+ before.
1362
+ Mon Jun 6 2005 T Horinouchi
1363
+ * gphys-0.5.0 released (cvs tag gphys-0_5_0)
1364
+ * doc/: updated
1365
+ Mon Jun 6 2005 T Horinouchi
1366
+ * gdir_connect_ftp-like.rb: very minor change in URL handling
1367
+ (chomp -> strip)
1368
+ * bin/gdir_server: changed the default behavior to allow
1369
+ connections only from the localhost. (You need specify
1370
+ -a hoge.hero.org or -a all etc. to accept remote hosts.)
1371
+ Mon Jun 6 2005 T Horinouchi < S Otsuka
1372
+ * gphys_netcdf_io.rb: NetCDF_IO::open : improved handling of
1373
+ files without coordinate variables. (add "_#{dim}" to
1374
+ the automatically generated name "noname")
1375
+ Mon Jun 6 2005 T Horinouchi
1376
+ * gphys_io_common.rb: IO_Common::each_along_dims_write : changed to
1377
+ use the new grid obtained with *_IO::write_grid
1378
+ [It solves the problem reported by T Koshiro
1379
+ (Subject: GPhys::NetCDF_IO.each_along_dims_write
1380
+ Date: Wed, 27 Apr 2005 11:00:40 +0900)]
1381
+ * gphys_netcdf_io.rb: GPhys::NetCDF_IO::write_grid : changed
1382
+ to return a Grid object, in which all VArrays in the original
1383
+ grid are replaced with the new ones in the file (the return
1384
+ value used to be nil).
1385
+ * axis.rb: added methods Axis#each_varray, Axis#collect.
1386
+ Mon May 30 2005 T Horinouchi (thanks to T Koshiro)
1387
+ * ggraph.rb: GGraph#(tone|contour|vector): debug in
1388
+ cyclic extension treatment; GGraph#map_trn?: modified
1389
+ to support the debug in tone etc.
1390
+ Wed May 25 2005 T Horinouchi
1391
+ * grads_gridded.rb: GrADS_Gridded#parse_ctl: to use a bit simpler
1392
+ time representation
1393
+ * grads_gridded.rb: GrADS_Gridded#parse_starttime:
1394
+ changed to accept lower-case "z" (which is leagal).
1395
+ * grads_gridded.rb: GrADSVar#initialize: added attribute
1396
+ 'missing_value', which is 'undef' in GrADS_Gridded.
1397
+ * grads_gridded.rb: GrADS_Gridded#parse_ctl: change in the
1398
+ relative path intepretation: to deal with path without
1399
+ '^' at the beginning (BEFORE: '^hoge' -> absolute path,
1400
+ 'hoge' -> remained relative; AFTER: both -> absolute path.
1401
+ So you don't need to be at the data directory anymore.)
1402
+ Tue May 24 2005 T Horinouchi
1403
+ * grads_gridded.rb: GrADS_Gridded#get_dim: to use float for
1404
+ spacial dimensions as well as time.
1405
+ GrADSVar#vartype: to return 'float' for coordinate variables.
1406
+ * grads_gridded.rb: GrADSVar#initialize: to raise error if the
1407
+ variable name specified (varname) is not found in the ctl file.
1408
+ Fri May 13 2005 T Horinouchi
1409
+ * ggraph.rb: Added method GGraph::tone_and_contour.
1410
+ (requires numru-misc-0.0.6 or later)
1411
+ * bin/gdir_server: added option to explicitly specify host address
1412
+ * gdir.rb: sort gdirs and texts in list_*; plus, a very minor change
1413
+ * gdir_connect_ftp-like.rb: start_dcl: to call
1414
+ DCL.swpset('lwait',false) (if you don't like it, you don't need to
1415
+ use start_dcl.)
1416
+ Wed May 11 2005 T Horinouchi
1417
+ * Merged gphys-remote-0.4 in gphys:
1418
+ * commands bin/gdir_server and bin/gdir_client
1419
+ (the former was renamed from gdir_server.rb in gphys-remote).
1420
+ * irb start-up file lib/numru/gdir_connect_ftp-like.rb
1421
+ (renamed from gphys_connect_ftp-like.rb in gphys-remote).
1422
+ Tue May 10 2005 T Horinouchi
1423
+ * ggraph.rb: GGraph's visualization methods are changed to call
1424
+ DCL.gropn(1) if gropn/sgopn has not been called
1425
+ (by introducing GGraph::gropn_1_if_not_yet).
1426
+ * gdir.rb: Added GDir.pwd, GDir#each_dir, GDir#each_data.
1427
+ show, show_v are reorganized and renamed to list_all,
1428
+ list_all_v, which returns the result as strings.
1429
+ ls / ls_l now prints their results.
1430
+ Mon May 9 2005 T Horinouchi
1431
+ * subsetmapping.rb: SubsetMapping1D.new: support reversed range.
1432
+ * varray.rb: VArray#val: interpret Hash slicers for NArray/NArrayMiss
1433
+ * ggraph.rb:
1434
+ GGraph::map: added option 'fill'.
1435
+ GGraph::contour / GGraph::tone: when map projection, convert to
1436
+ the anti-clockwise coordinate to get around a bug in UMFMAP in
1437
+ DCL 5.3
1438
+ Fri May 6 2005 T Horinouchi < T Koshiro
1439
+ * ggraph.rb: GGraph::map added options "dgridmj" and "dgridmn"
1440
+ Wed Apr 27 2005 T Horinouchi
1441
+ * ggraph.rb: separated annotate_at from annotate
1442
+ Fri Apr 15 2005 T Horinouchi
1443
+ * ggraph.rb: Further modification for map projection:
1444
+ The strategy of the previous edition was not good.
1445
+ If map is to be drawn, 'itr' should be 10 and axes should be drawn
1446
+ afterwards. Eliminated the new "map" and introduced "map_axes".
1447
+ Fri Apr 15 2005 T Horinouchi
1448
+ * lib/numru/gdir.rb: added GDir#open_all_data. Renamed ls_v ->
1449
+ ls_l, which I originally meant. Supported path in show, show_v.
1450
+ Support the path argument in show and show_v
1451
+ * gphys_io.rb: corrrected a spell miss of method name in documentation
1452
+ * ggraph.rb: Revision regarding map projection:
1453
+ * GGraph::fig: Option changed from map_lat_range -> map_window
1454
+ (the latter includes log-lat range, and the former is eliminated).
1455
+ Added new option 'map_fit', which is for itr=10 and 11.
1456
+ Changed the default behavior for itr=10 (cylindrical) to fit
1457
+ the map to the data window (equiv to 'map_fit'=>true).
1458
+ Concequently, the default window for itr=10 is now the same as
1459
+ with itr=1.
1460
+ * GGraph::tone & GGraph::contour: added option 'map_fit',
1461
+ which draws map etc by switching temporarilly to itr=10 and
1462
+ calling GGraph::map.
1463
+ * sample/map_projection.rb: Revised according to the change
1464
+ of ggraph.rb. New samples were added regarding the 'map_fit'
1465
+ option of fig and the 'map' option of tone/contour.
1466
+ * doc/: updated
1467
+ Wed Apr 13 2005 T Horinouchi
1468
+ * lib/numru/gdir.rb: Imported (moved) from gphys-remote-0.3. It will be
1469
+ maintained here.
1470
+ * lib/numru/gphys.rb: to include gdir
1471
+ * gphys_io.rb: added method file2file_class(file), which returns
1472
+ NetCDF, GrADS_Gridded, or Grib.
1473
+ * doc/: updated corresponding to the import of gdir.rb
1474
+ Mon Apr 4 2005 S Nishizawa
1475
+ * grib.rb, grib_params.rb: change not to set attribute of "units" when variables have no unit.
1476
+ Fri Apr 1 2005 T Horinouchi
1477
+ * gphys_netcdf_io.rb: added a test regarging packed data.
1478
+ * Revised netcdf convension handling. This improves attribute
1479
+ handling of the user's guide convention (the default one)
1480
+ regarding data missing etc.
1481
+ * attributenetcdf.rb: AttributeNetCDF#initialize to extend
1482
+ Attribute_Mixin whose default is defined in netcdf_convention.rb
1483
+ * netcdf_convention.rb: created module Attribute_Mixin
1484
+ in NetCDF_Convention_Users_Guide. Moved contents of
1485
+ VArray_Mixin to Attribute_NetCDF, which is to move
1486
+ attribute editor on copying (deep-cloning) from VArrayNetCDF
1487
+ to AttributeNetCDF (which is used in VArrayNetCDF).
1488
+ * grads_gridded.rb: minor revision of documentation.
1489
+ allowed modes: "r" & "w+" --> "r" & "w" (read only / write only).
1490
+ * doc/: updated
1491
+ Thu Mar 31 2005 S Nishizawa
1492
+ * grib.rb: remove @define_mode and Grib#enddef
1493
+ change value by units to write
1494
+ * varraygrib.rb: change as removing Grib#enddef
1495
+ * gphys_grib_io.rb: small change in test
1496
+ Thu Mar 31 2005 T Horinouchi
1497
+ * grib.rb: Grib: eliminated @mode and introduced @define_mode
1498
+ (It is a half-hearted job, since no @define_mode check is
1499
+ introduced in the write method)
1500
+ Thu Mar 31 2005 T Horinouchi
1501
+ * grib.rb: minor update of Grib#initialize (to refuse "w+";
1502
+ corresponding error message at l.1268; documentation of file mode).
1503
+ Wed Mar 30 2005 R Mizuta
1504
+ * gphys_grads_io.rb, varraygrads.rb:
1505
+ output normal gphys into GrADS file
1506
+ Wed May 30 2005 S Nishizawa
1507
+ * grib.rb: bugfix in opening file for write
1508
+ * gphys_grib_io.rb: add test for writing, change variable name in test
1509
+ * varraygrib.rb: change variable name in test
1510
+ Wed Mar 30 2005 R Mizuta
1511
+ * grads_gridded.rb:
1512
+ * speed up in reading
1513
+ * GrADSVar followed changes of NetCDFVar
1514
+ * grads_gridded.rb, varraygrads.rb:
1515
+ gives more readable control file in GrADS output
1516
+ * gphys_grads_io.rb: bug in the test code fixed
1517
+ Tue Mar 29 2005 T Horincouhi
1518
+ * gphys_io.rb: Added methods parse_gturl and open_gturl
1519
+ (the former was moved from bin/gpprint to gphys_io.rb).
1520
+ * bin/gpprint,bin/gpview: modified to use GPhys::IO.open_gturl
1521
+ * doc/: updated
1522
+ Tue Mar 29 2005 S Nishizawa
1523
+ * grib.rb: change status
1524
+ Tue Mar 29 2005 T Horincouhi
1525
+ * bin/grads2nc_with_gphys: debug (repoted by S Nishizawa 2005/03/15)
1526
+ * axis.rb: document written. Changed return value of set_aux to self.
1527
+ * grid.rb: document written.
1528
+ * gphys.rb: minor updates of the document.
1529
+ * doc/: updated
1530
+ Tue Mar 29 2005 S Nishizawa
1531
+ * grib.rb: remove space from attribute key names
1532
+ Tue Mar 29 2005 S Nishizawa
1533
+ * grib.rb: add attribute of "level" and "time" when number of level and time is one
1534
+ Tue Mar 29 2005 S Nishizawa
1535
+ * grib.rb: bugfix when number of bit for packing is odd
1536
+ Tue Mar 29 2005 T Horincouhi
1537
+ * gphys_io.rb: RD document written
1538
+ * gphys.rb:
1539
+ * Added a class method GPhys.each_along_dims, along with its test.
1540
+ * Changed return value of replace_val, set_att, and del_att to self.
1541
+ * doc/: updated
1542
+ Mon Mar 29 2005 S Nishizawa
1543
+ * grib.rb, grib_params.rb: add some new definitions of variables and levels for NCEP grib file.
1544
+ Mon Mar 28 2005 T Horincouhi
1545
+ * grib.rb: debug to open grib files in the binary mode.
1546
+ * gphys_netcdf_io.rb: debug in is_a_NetCDF?: to open with
1547
+ the binary mode.
1548
+ Sat Mar 26 2005 R Mizuta
1549
+ * grads_gridded.rb: open binary file with binary mode
1550
+ Fri Mar 25 2005 T Horinouchi
1551
+ * attribute.rb: attribute name is limited to those that matche
1552
+ /^[A-Za-z_]\w*$/. Removed Numeric from allowed value type
1553
+ list: Use a 1-element NArray instead.
1554
+ Fri Mar 25 2005 S Nishizawa
1555
+ * grib.rb: change ' ' to '_' in name of attribute
1556
+ change value to NArray with rank of 1 for value of attribute
1557
+ Fri Mar 25 2005 S Nishizawa
1558
+ * grib.rb: enable Grib#[] to get negative value
1559
+ * gphyx_grib_io.rb: add name and atts to aux for hybrid level
1560
+ Fri Mar 25 2005 S Nishizawa
1561
+ * grib.rb: change value of hybrid level
1562
+ bugfix
1563
+ * gphys_grib_io.rb: use Axis#set_aux for hybrid level
1564
+ Mon Mar 21 2005 S Nishizawa
1565
+ * grib.rb: bugfix for hybrid level
1566
+ Mon Mar 21 2005 S Nishizawa
1567
+ * grib.rb: bugfix in Grib.write
1568
+ * grib_params.rb: add variable of unknown
1569
+ Mon Mar 21 2005 S Nishizawa
1570
+ * grib.rb: change value of hybrid level from level number to coordinate parameters.
1571
+ Mon Mar 21 2005 T Horinouchi
1572
+ * gphys_io.rb: IO::fil2type: added case when Grib.
1573
+ * gphys_grib_io.rb: Grib_IO::write: added the 3rd argument
1574
+ as name_dummy=nil, which is a dummy and is never used but
1575
+ is present for consistency with other *_IO modules.
1576
+ Wed Mar 16 2005 T Horinouchi
1577
+ * doc/ updated.
1578
+ Wed Mar 16 2005 T Horinouchi
1579
+ * gphys-0.4.0 released (cvs tag gphys-0_4_0)
1580
+ * ggraph.rb: color_bar: changed not to draw a colobar when
1581
+ the # of levels is less or equal to 1 (warning is made
1582
+ in this case).
1583
+ Fri Mar 11 2005 D Tsukahara
1584
+ * ggraph.rb: minor bugfix
1585
+ Thu Mar 10 2005 D Tsukahara
1586
+ * ggraph.rb: minor bugfix for (Wed Mar 09 2005 D Tsukahara)
1587
+ Thu Mar 10 2005 S Nishizawa
1588
+ * grib.rb: change way to make variables of longitude and latitude.
1589
+ * gphys_grib_io.rb: change to set bare_index true at hybrid level
1590
+ Thu Mar 10 2005 S Nishizawa
1591
+ * grib.rb, grib_params.rb: add standard_name attribution to variables
1592
+ Thu Mar 10 2005 S Nishizawa
1593
+ * grib_params.rb: change name of variable to the same name of wgrib if it possible.
1594
+ * grib.rb: minor bugfix
1595
+ Thu Mar 10 2005 S Nishizawa
1596
+ * T.jan.grib: sample grib file converted from T.jan.nc
1597
+ * grib.rb, gphys_grib_io.rb: change to use T.jan.grib in sample code, change name from is_aGrib? to is_a_Grib?
1598
+ * gphys_netcdf_io.rb, gphys_grads_io.rb, gphys_grib_io.rb, grib.rb: bugfix for is_a_*?
1599
+ Thu Mar 10 2005 T Horinouchi
1600
+ * axis.rb,varray.rb: to deal with axis plot direction
1601
+ specification:
1602
+ axis.rb: added new method Axis#draw_positive, which simply calls
1603
+ @pos.axis_draw_positive (see below).
1604
+ varray.rb: added new method VArray#axis_draw_positive, which
1605
+ returns true (positive=='up'), false (positive=='down'), or
1606
+ nil (undefined) --- this is based on a widely-used NetCDF
1607
+ convention, so redefine it in VArray's subclasses if not
1608
+ appropriate
1609
+ Thu Mar 10 2005 T Horinouchi
1610
+ * netcdf_convention.rb:
1611
+ * in private method _op_attr_edit (called when operations are made)
1612
+ in NetCDF_Convention_Users_Guide:
1613
+ * Added deletion of _FillValue.
1614
+ * To unpack valid_* and missing_value if appropriate
1615
+ (in a separate new private method _unpack_missing_specification)
1616
+ * testdata/T.jan.packed.withmiss.nc: Added for test
1617
+ (requires RubyNetCDF 0.6.0, since missing_value is in
1618
+ the packed data type.)
1619
+ Wed Mar 09 2005 D Tsukahara
1620
+ * ggraph.rb: fix fig (option "window" can have its element "nil"),
1621
+ line and mark (add option "max", "min")
1622
+ * bin/gpview: apply option "range" for line plot
1623
+ * doc/ep_flux/index*: change link for tutorial page
1624
+ Tue Mar 07 2005 T Horinouchi < T Koshiro
1625
+ * ggraph.rb: [dennou-ruby:002075] support auto-level setting when
1626
+ level is explicitly given.
1627
+ Tue Mar 07 2005 S Nishizawa
1628
+ * gphys_IO.rb gphys_netcdf_io.rb gphys_grads_io.rb gphys_grib_io.rb:
1629
+ add class methods; var_names, var_names_except_coordinates, is_a_[NetCDF,GrADS,Grib]?, respectively, except gphys_io.rb
1630
+ add part using is_a_*? methods to distinction of file type
1631
+ Thu Mar 03 2005 D Tsukahara
1632
+ * doc/derivative/math-doc/*: fix and amend a text
1633
+ Tue Mar 02 2005 S Nishizawa
1634
+ * grib.rb, varraygrib.rb, gphys_grib_io.rb: support writing
1635
+ Tue Feb 26 2005 S Nishizawa
1636
+ * grib.rb: remove dimension variables from variables
1637
+ change timing to obtain variable infomation from Grib.open to Grib#var
1638
+ add methods GribDim#get, GribDim#[], GribDim#[set,put]_att, DribDim#att
1639
+ * varraygrib.rb, gphys_grib_io.rb: some changes corresponding to the changes of grib.rb
1640
+ Tue Feb 25 2005 S Nishizawa
1641
+ * grib.rb: support missing value
1642
+ * varraygrib.rb: change path of grib.rb
1643
+ Tue Feb 25 2005 S Nishizawa
1644
+ * grib.rb: change to use NArray.to_na
1645
+ some changes to speed up
1646
+ Tue Feb 24 2005 S Nishizawa
1647
+ * grib.rb: separate definition of parameters to grib_params.rb
1648
+ * grib_params.rb: imported (from separated from grib.rb and added some new definitions for ECMWF datasets)
1649
+ Tue Feb 22 2005 S Nishizawa (cvs committed by Horinouchi)
1650
+ * grib.rb,varraygrib.rb,gphys_grib_io.rb: imported.
1651
+ (Grib data handlers.)
1652
+ Thu Feb 19 2005 D Tsukahara
1653
+ * doc/ep_flux/math-doc/*: fix and amend a text(Thanks to M Ishiwatari)
1654
+ Thu Feb 16 2005 D Tsukahara
1655
+ * ep_flux.rb: fix EP_Flux::strm_rmean( change integrate method ),
1656
+ delete EP_Flux::prepare_for_divergence_on_merdional_section.
1657
+ * test/test_ep_flux.rb: add test for strm_rmean( looks succesfully )
1658
+ * doc/ep_flux/ep_flux.html: regenerated
1659
+ Thu Feb 10 2005 D Tsukahara
1660
+ * bin/gpview: add option --map, --m, --reverse, -Gr.
1661
+ change option parser (getopts => getoptlong) because
1662
+ getopts would be obsolute.
1663
+ * doc/gpview.html: regenerated.
1664
+ Thu Feb 3 2005 T Horinouchi
1665
+ * gphys_io_common.rb: IO_common::each_along_dims_write: modified
1666
+ to accept GPhys'es that do not have the same shape ---
1667
+ It's now ok as long as the dimensions to loop are shared.
1668
+ * gphys_netcdf_io.rb: Added a test for the new feature of
1669
+ each_long_dims_write. Plus, documentation updated.
1670
+ * doc/gphys_netcdf_io.html: regenerated.
1671
+ Thu Feb 3 2005 T Horinouchi
1672
+ * gphys_io_common.rb: IO_common::each_along_dims_write: modified
1673
+ to accept GPhys'es that do not have the same shape ---
1674
+ It's now ok as long as the dimensions to loop are shared.
1675
+ * gphys_netcdf_io.rb: Added a test for the new feature of
1676
+ each_long_dims_write. Plus, documentation updated.
1677
+ * doc/gphys_netcdf_io.html: regenerated.
1678
+ Wed Feb 02 2005 D Tsukahara < M Nakano
1679
+ * bin/gpview: debug about looopsense_flag(each_along_dims)
1680
+ Wed Jan 26 2005 S Takehiro
1681
+ * options --map_axis and --similar are added to gpview.
1682
+ Tue Jan 25 2005 T Horinouchi < S Takehiro
1683
+ * numru/ggraph.rb: support tranformation number 5 (polar
1684
+ coorodnate) by S Takeshiro (with a modification by Horinouchi).
1685
+ Added: GGraph::polar_coordinate_boundaries
1686
+ GGraph::sim_trn? (currently not used)
1687
+ Modified: GGraph::fig, GGraph::contour, GGraph::tone
1688
+ Tue Jan 25 2005 T Horinouchi
1689
+ * gphys.rb: GPhys#cyclic_ext debug
1690
+ Thu Jan 20 2005 T Horinouchi < T Koshiro
1691
+ * numru/ggraph.rb: DCLExt::color_bar -- always lclip=false in
1692
+ the method.
1693
+ Mon Jan 17 2005 T Horinouchi
1694
+ * numru/ggraph.rb: added contour test under map projection
1695
+ * gphys.rb: debug in GPhys::cyclic_ext
1696
+ * varray.rb,gphys.rb: Added methods VArray#long_name,
1697
+ VArray#long_name=, GPhys#long_name, GPhys#long_name=.
1698
+ Fri Jan 14 2005 T Horinouchi
1699
+ * gphys-0.3.5 released (cvs tag gphys-0_3_5)
1700
+ Fri Jan 14 2005 T Horinouchi
1701
+ * bin/gpview: l.202 'itr'=>($OPT_itr) --> 'itr'=>($OPT_itr.to_i)
1702
+ --mean and --animate are changed to accpet integers as well as
1703
+ dimension names.
1704
+ Fri Jan 14 2005 D Tsukahara
1705
+ * bin/gpview: delete --map, -m(don't redef GGraph's method)
1706
+ Fri Jan 14 2005 R Mizuta
1707
+ * numru/gphys/grads_gridded.rb: disuse Date.parse (for Ruby 1.6)
1708
+ Fri Jan 14 2005 T Horinouchi < S Takehiro
1709
+ * install.rb: editied help messaging
1710
+ Thu Jan 13 2005 T Horinouchi
1711
+ * numru/ggraph.rb: DCLExt::color_bar: bug fix in the calculation
1712
+ of offs_(tick|label) under the uniform tone level interval
1713
+ (independent of Mizuta-kun's revision).
1714
+ Added 3 sample graphics for map projection (graph 22-24).
1715
+ Added contour to graph 11.
1716
+ * doc/ggraph.html: regenerated
1717
+ Thu Jan 13 2005 R Mizuta
1718
+ * numru/ggraph.rb: DCLExt::color_bar: added options (constwidth,index).
1719
+ Wed Jan 12 2005 T Horinouchi
1720
+ * numru/ggraph.rb: Support map projection:
1721
+ new methods: map, set_map, next_map, map_trn?
1722
+ modified methods: fig, title, annotate, contour, tone, vector
1723
+ * numru/ggraph.rb: documents updated.
1724
+ * grid.rb: set_axis: modified to return self.
1725
+ * gphys.rb: added new method cyclic_ext.
1726
+ * varray.rb: [], []=: modified to accept false (rubber dim)
1727
+ Unbelievable that it was not yet.
1728
+ * sample/map_projection.rb: created. (sample program to demonstrate
1729
+ map projection with GGraph)
1730
+ * doc/gpprint.html,doc/gpview.html,doc/grads2nc_with_gphys.html:
1731
+ created using rd2.
1732
+ * doc/index.(rd|html): modified to include the commands.
1733
+ Mon Jan 12 2005 D Tsukahara
1734
+ * bin/gpview: use GGraph::margin_info and GGraph::color_bar. Add many
1735
+ options(ex. s/cint, s/crange, aspect...), write options document,
1736
+ and fix SAMPLE.
1737
+ Mon Jan 10 2005 T Horinouchi (partly < D Tsukahara)
1738
+ * install.rb: changed to install files in bin/
1739
+ * bin/install.rb: removed
1740
+ * bin/grads2nc_with_gphys: renamed grads2nc.rb to grads2nc_with_gphys
1741
+ * bin/gpprint: added
1742
+ * bin/gpview: added -- This program was written by D Tsukahara
1743
+ and imported from [dennou-ruby:001970]
1744
+ Mon Jan 10 2005 T Horinouchi
1745
+ * numru/ggraph.rb: Added GGraph::margin_info, which shows
1746
+ strings in the bottom margin (representing program name, date,
1747
+ and data source)
1748
+ * numru/ggraph.rb: DCLExt::color_bar: improved the algorithm used
1749
+ to define levels to label.
1750
+ Tue Dec 7 2004 T Horinouchi
1751
+ * numru/ggraph.rb: DCLExt::color_bar: changed the default to portrait
1752
+ (which looks nicer). Labelling is improved to chose good levels.
1753
+ Mon Dec 6 2004 T Horinouchi
1754
+ * grid.rb: Grid#transpose modified to preserve @lost_axes
1755
+ Fri Dec 3 2004 T Horinouchi
1756
+ * varray.rb: VArray#coerse: added NArrayMiss support
1757
+ Wed Dec 1 2004 T Horinouchi
1758
+ * numru/ggraph.rb:
1759
+ * GGraph::tone: changed the default value of 'tonc'
1760
+ and 'tonf' to false. (there seems a bug in uetonf, while a bug in
1761
+ uetone must have eliminated in dcl5.3. Also, I think it was my
1762
+ careless mistake to set the default val of 'tonc' to true.)
1763
+ Changed the timing to call DCL.ueitlv -- this is to leave
1764
+ tone levels for color bars.
1765
+ * DCLExt::color_bar: Created. General program to draw COLOR BARS.
1766
+ Mon Nov 29 2004 R Mizuta
1767
+ * numru/gphys/grads_gridded.rb: changed the basis of time axis
1768
+ from the first Julian period to the date of the first data record.
1769
+ Wed Nov 24 2004 R Mizuta
1770
+ * numru/gphys/grads_gridded.rb: support data containing missing data,
1771
+ 2-byte signed integers, and 1-byte unsigned integers.
1772
+ Tue Nov 12 2004 D Tsukahara
1773
+ * numru/gphys/ep_flux.rb:
1774
+ 1. add accesor method p00 and modified set||get constants
1775
+ 2. undef C_p and R; instead def @@cp, @@gas_const and accesor method.
1776
+ 3. fix document: ep_full_sphere(about argument xfzdims)
1777
+ * test/test_ep_flux.rb: reflect adjustment of ep_flux.rb
1778
+ Tue Nov 09 2004 T Horinouchi
1779
+ * gphys-0.3.4 released (cvs tag gphys-0_3_4)
1780
+ * varray.rb: coerce: changed the assumptions of the units of
1781
+ Numeric etc (to assume the same units instead of non-dim, for
1782
+ consistency between numeric+varray and varray+numeric).
1783
+ Refactoring regarding attribute copying.
1784
+ Mon Nov 08 2004 T Horinouchi
1785
+ * numru/gphys.rb: to require numru/gphys/ep_flux
1786
+ (which requires numru/gphys/derivative etc)
1787
+ Mon Nov 08 2004 D Tsukahara
1788
+ * numru/gphys/ep_flux.rb: modified
1789
+ 1. add accesor method g_forces
1790
+ 2. delete "require numru/gphys"
1791
+ 3. fixed strm_rmean : change int_v (VArray => GPhys) and not setting
1792
+ units.
1793
+ * sample/ep_flux/demo_NCEP_1.rb,demo_NCEP_2.rb,demo_NCEP_3.rb:
1794
+ write testdata's URL and simple description.
1795
+ Tue Nov 02 2004 D Tsukahara
1796
+ * doc/ep_flux.rd,ep_flux.html: fixed dead link and updated for Tutrial.
1797
+ * numru/ggraph_on_merdional_section.rb:
1798
+ delete GGraph::divergence_on_merdional_section
1799
+ * doc/ep_flux/ggraph_on_merdional_section.html:
1800
+ delete GGraph::divergence_on_merdional_section
1801
+ Thu Nov 02 2004 T Horinouchi
1802
+ * doc/index.(rd|html) updated for ep_flux and derivative.
1803
+ Tue Nov 02 2004 D Tsukahara
1804
+ * numru/gphys/ep_flux.rb: created
1805
+ * numru/ggraph_on_merdional_section.rb: created
1806
+ * TODO_ep_flux: created
1807
+ * numru/derivative.rb: created
1808
+ * numru/gphys/derivative.rb: created
1809
+ * test/test_ep_flux.rb:created
1810
+ * sample/ep_flux/demo_NCEP_1.rb,demo_NCEP_2.rb,demo_NCEP_3.rb: created
1811
+ (require demo-data)
1812
+ * doc/ep_flux/index.rd,index.html,ep_flux.html,
1813
+ ggraph_on_merdional_section.html: created
1814
+ * doc/ep_flux/math-doc/document.tex,document.pdf: created
1815
+ * doc/ep_flux/math-doc/document/*: many mathmatical document files
1816
+ created (html version)
1817
+ * doc/derivative/index.rd,index.html,numru-derivative.html,
1818
+ gphys-derivative.html: created
1819
+ * doc/derivative/math-doc/document.tex,document.pdf: created
1820
+ * doc/derivative/math-doc/document/*: many mathmatical document files
1821
+ created (html version)
1822
+ Thu Aug 26 2004 T Horinouchi
1823
+ * gphys_io_common.rb: debug in each_along_dims_write
1824
+ Fri Aug 18 2004 T Horinouchi
1825
+ * ggraph.rb: Added options 'tonf', 'tonc' to GGraph.tone
1826
+ Fri Aug 12 2004 T Horinouchi
1827
+ * ggraph.rb: Added GGraph::vector. Renamed DCLExt::ug_flow_vect
1828
+ to DCLExt::flow_vect and revised. Added DCLExt::unit_vect;
1829
+ DCLExt::set_unit_vect_options, and DCLExt::next_unit_vect_options.
1830
+ * gphys.rb: added att_names, get_att, set_att,
1831
+ put_att(aliased to set_att), del_att.
1832
+ * varray.rb: added VArray#attr_copy
1833
+ * netcdf_convention.rb: _op_attr_edit: not to delete 'long_name'
1834
+ Fri Aug 10 2004 T Horinouchi
1835
+ * varray.rb,gphys.rb: added method convert_units
1836
+ Fri Aug 9 2004 T Horinouchi
1837
+ * ggraph.rb: added DCLExt::ug_flow_vect
1838
+ * removed ggraph_old.rb (to be deleted in the next release)
1839
+ Fri Aug 9 2004 T Horinouchi
1840
+ * gphys-0.3.3 released (cvs tag gphys-0_3_3)
1841
+ * grid.rb: delete_axes: to allow dimension specification by name(s)
1842
+ * axis.rb(,gphys.rb): added Axis#to_gphys(datavary1d=nil), which
1843
+ makes a 1D GPhys object using the axis. By default, the axis's
1844
+ coordinate variable is used as the data.
1845
+ Its test program was added to gphys.rb.
1846
+ * ggraph.rb: contour,tone: added transpose option to exchange x&y axes.
1847
+ * grid.rb,varray.rb,gphys.rb: added transpose method.
1848
+ * varray.rb: added VArray#del_att. VArray#coerce: support UNumeric.
1849
+ asin, atan etc: units of the return value set to 'rad' (it was '1')
1850
+ * unumeric.rb: debug in expection messaging in UNumeric#convert2
1851
+ Math funcs such as log&sin: to return UNumeric (instead of Numeric).
1852
+ Added atan2.
1853
+ asin, atan etc: units of the return value set to 'rad' (it was '1')
1854
+ Fri Jul 16 2004 T Horinouchi
1855
+ * ggraph.rb:
1856
+ axes -- to set the uz parameter 'roffxt', when units of the left
1857
+ y axis is to be written to avoid the overlay with the title.
1858
+ line -- added a new parameter 'label'
1859
+ Thu Jul 15 2004 T Horinouchi
1860
+ * gphys_fft.rb: added GPhys#detrend, GPhys#cos_taper,
1861
+ and GPhys::COS_TAPER_SP_FACTOR (==1/0.875)
1862
+ Thu Jul 15 2004 R Mizuta
1863
+ * grads_gridded.rb: created natts, get_att, and att_names
1864
+ Thu Jun 10 2004 T Horinouchi
1865
+ * grads_gridded.rb: treat cray_32bit_ieee as bigendian
1866
+ Thu May 24 2004 R Mizuta
1867
+ * coordtransform.rb: bug fixed
1868
+ Fri May 21 2004 T Horinouchi
1869
+ * gphys-0.3.2 released (cvs tag gphys-0_3_2)
1870
+ * gphys_io_common.rb: debug in each_along_dims_write -- the previous
1871
+ version did not work with the unlimited dimension.
1872
+ * coordtransform.rb: minor change (HAVE_SSL2 -> HAVE_NUMRU_SSL2)
1873
+ Mon May 10 2004 R Mizuta
1874
+ * grads_gridded.rb,gphys_grads_io.rb,varraygrads.rb:
1875
+ supported GrADS output
1876
+ * coordtransform.rb: linear interpolation without SSL2
1877
+ Wed May 5 2004 T Horinouchi
1878
+ * gphys.rb: [],[]=: minor debug (handling of specification by dim name)
1879
+ * ggraph.rb: _set_tone_levels_ (used in tone): improved --
1880
+ it is ok now not to specify 'patterns'.
1881
+ tone: added options 'clr_min', 'clr_max' (just for convenience
1882
+ and consitstency with contour --- one can instead directly
1883
+ specify the uepack parameter icolor[12])
1884
+ Tue May 4 2004 T Horinouchi
1885
+ * gphys_fft.rb: debug & improve coordinate handling in GPhys#fft
1886
+ Sun May 2 2004 T Horinouchi
1887
+ * gphys_fft.rb: added units handling in rawspect2powerspect
1888
+ * unumeric.rb: debug in "/"; added the "**"
1889
+ Fri Apr 2 2004 T Horinouchi
1890
+ * netcdf_convention.rb: NetCDF_Conventions::find -> not to raise an
1891
+ exception when gtool4
1892
+ Sun Mar 21 2004 T Horinouchi
1893
+ * gphys-0.3.1 released (cvs tag gphys-0_3_1)
1894
+ * ggraph.rb,gphys.rb: Moved GPhys#first1D & GPhys#first1D from the
1895
+ former to the latter.
1896
+ * gphys_io.rb: very minor change
1897
+ Sat Mar 20 2004 T Horinouchi
1898
+ * grads_gridded.rb: GrADS_Gridded: added reader to @ctlfile
1899
+ * lib/numru/gphys.rb: changed required files accordingly
1900
+ * gphys_io.rb: Created (module GPhys::IO).
1901
+ Consolidates specific IO modules such as GrADS_IO and NetCDF_IO.
1902
+ Figures out file type internally and forward messages to
1903
+ appropriate modules.
1904
+ * gphys_io_common.rb: Created by separating from
1905
+ gphys_netcdf_io.rb. Internal usage only (to be used by IO,
1906
+ NetCDF_IO, GrADS_IO etc.)
1907
+ * gphys_netcdf_io.rb: Separated module IO_Common into
1908
+ gphys_io_common.rb.
1909
+ Fri Mar 19 2004 T Horinouchi
1910
+ * ggraph.rb: Do not check class of a VArray (for dRuby)
1911
+ * varray.rb: NMath --> Misc::EMath, debug: VArray#** (units treatment)
1912
+ * unumeric.rb: scale-offset conversion --> to warn regardress $VERBOSE
1913
+ Thu Mar 4 2004 T Horinouchi
1914
+ * varray.rb: __ntype: "lint" -> "int"
1915
+ Tue Mar 2 2004 T Horinouchi
1916
+ * netcdf_convention.rb: minor debug in an exception message
1917
+ Tue Mar 2 2004 T Horinouchi
1918
+ * gphys-0.3.0 released (cvs tag gphys-0_3_0)
1919
+ * doc/index.rd: created (separated from lib/numru/gphys.rb)
1920
+ * netcdf_convention.rb: CREATED. To hold NetCDF convensions
1921
+ --- better support of the User's Guide convention.
1922
+ Supported the Wind Profiler convention.
1923
+ * unumeric.rb: added documentation.
1924
+ * gphys_netcdf_io.rb,varraynetcdf.rb,varraycomposite.rb: changed
1925
+ according to the introduction of netcdf_convention.rb
1926
+ * varray.rb,gphys.rb: supported atan2
1927
+ * attributenetcdf.rb: AttributeNetCDF.new: to accept a NetCDF in
1928
+ addition to NetCDFVar (this is to support global attributes).
1929
+ Mon Mar 1 2004 T Horinouchi
1930
+ * varraycomposite.rb: val: to support NArraMiss; added convention
1931
+ * varraynetcdf.rb: convention module moved in from gphys_netcdf_io.rb.
1932
+ NetCDFVar#get/put re-aliasesed to (get|put)_with_miss_and_scaling
1933
+ (by default, they are aliased to simple_(get|put)).
1934
+ (CAUTION: Need NArrayMiss newer THAN 1.0.1, which has a bug)
1935
+ * gphys_netcdf_io.rb: convention module moved out to varraynetcdf.rb
1936
+ Sun Feb 29 2004 T Horinouchi
1937
+ * unumeric.rb: added to_f, to_i
1938
+ Sat Feb 28 2004 T Horinouchi
1939
+ * gphys_fft.rb: change to use a NumRu::Units operation in wavenum calc
1940
+ Fri Feb 27 2004 T Horinouchi
1941
+ * unumeric.rb: created.
1942
+ * varray.rb: Modified to use NumRu::Units
1943
+ - added methods units and units=
1944
+ - modified Math funcs, binary operators, and
1945
+ type3_methods (mean,max,etc).
1946
+ * gphys.rb: added methods units and units= (forwarded to @data)
1947
+ * axis.rb,grid.rb: minor change in response to the change in varray.rb
1948
+ Fri Feb 27 2004 T Horinouchi
1949
+ * varray.rb: improved binary operators (to coerce unknown objects).
1950
+ VArray#coerce: debug.
1951
+ VArray#val: changed to return @ary.dup instead of @ary for
1952
+ consistency with other VArray subclasses and the mapping case.
1953
+ * gphys.rb: added GPhys#coerce,
1954
+ binary&math operators: changed to copy the grid
1955
+ Thu Feb 5 2004 T Horinouchi
1956
+ * gphys_fft.rb: Debuged spect_zero_centering and spect_one_sided.
1957
+ Made a test part. Added rawspect2powerspect.
1958
+ Wed Feb 4 2004 T Horinouchi
1959
+ * varray.rb: increased NArray_type1_methods (such as real, imag,
1960
+ random, etc.etc.) and Binary_operators (imag=).
1961
+ * gphys_fft.rb: added new GPhys methods spect_zero_centering
1962
+ and spect_one_sided.
1963
+ Thu Jan 29 2004 T Horinouchi < S Nishizawa
1964
+ * gphys_netcdf_io.rb: debug in NetCDF_IO::open
1965
+ Thu Jan 29 2004 T Horinouchi
1966
+ * gphys-0.2.3 released
1967
+ * axis.rb: Axis#cut/Axis#cut_rank_conserving:
1968
+ supported multiple position specification by Array/NArray
1969
+ * gphys.rb: added a test for GPhys#cut (which depends on Axis#cut)
1970
+ * varray.rb,gphys.rb: removed spaces before parentheses.
1971
+ Tue Jan 27 2004 T Horinouchi
1972
+ * varraycomposite.rb: redefined methods ntype and typecode
1973
+ Tue Jan 6 2004 T Horinouchi
1974
+ * gphys_netcdf_io.rb: created GPhys::IO_Common module, which is to
1975
+ be separated in a independent file in future.
1976
+ Made IO_Common::each_along_dims_write and
1977
+ NetCDF_IO::each_along_dims_write, where the latter uses the former.
1978
+ * axis.rb: debug in Axis#[] (treatment of @aux)
1979
+ * gphys.rb: added GPhys#rename
1980
+ Mon Jan 5 2004 T Horinouchi
1981
+ * varraynetcdf.rb: aliased VArrayNetCDF.new2 to VArrayNetCDF.def_var
1982
+ * gphys.rb: created GPhys#dim_index.
1983
+ GPhys#[], GPhys#[]= : enhanced to support specification by Hash
1984
+ (with keys representing axis names. e.g., gphys['x'=>2..-3]).
1985
+ Sun Jan 4 2004 T Horinouchi
1986
+ * grid.rb: unify Grid#axis and Grid#get_axis (so, get_axis
1987
+ is kept only for backward compatibility)
1988
+ * gphys.rb: replaced Grid#get_axis calls with Grid#axis calls.
1989
+ Created GPhys#grid_copy to return a deep clone of the grid
1990
+ (@grid.copy).
1991
+ * gphys_netcdf_io.rb: separated NetCDF_IO::write_grid from
1992
+ NetCDF_IO::write
1993
+ * varraynetcdf.rb: VArrayNetCDF.new2 (class method): to allow
1994
+ dimension specification by name.
1995
+ Thu Nov 20 2003 T Horinouchi
1996
+ * gphys_fft.rb: to use FFTW3 if exists
1997
+ Mon Nov 17 2003 T Horinouchi
1998
+ * lib/numru/gphys.rb: to require gphys_operations
1999
+ * gphys_fft.rb: created
2000
+ * varray.rb: VArray#name modified to return a copy (dup) of the name
2001
+ * varray.rb: added "abs" to NArray_type1_methods
2002
+ * varray.rb: added a new method VArray#replace_val
2003
+ * gphys.rb: added a new method GPhys#replace_val
2004
+ Mon Nov 10 2003 R Mizuta
2005
+ * ggraph.rb: debug in tone, options added to axes, and
2006
+ support of String in xx_set_params
2007
+ Sun Nov 9 2003 T Horinouchi
2008
+ * gphys_netcdf_io.rb: debug in __to_na_of_netcdf.
2009
+ Fri Nov 7 2003 T Horinouchi
2010
+ * gphys-0.2.2 released
2011
+ * bin/grads2nc.rb: created. (file format converter)
2012
+ * bin/install.rb: created. (to install files in bin/)
2013
+ * lib/numru/gphys.rb: to require "gphys_grads_io.rb"
2014
+ * gphys_grads_io.rb: added an RD document
2015
+ Wed Nov 5 2003 T Horinouchi
2016
+ * varray.rb: added to_i, to_f and to_type to NArray_type1_methods
2017
+ Tue Oct 28 2003 R Mizuta
2018
+ * grads_gridded.rb: bugs fixed and ruby-1.8 support
2019
+ * gphys_grads_io.rb: transforms GrADS into NetCDF in the test code.
2020
+ Tue Oct 28 2003 T Horinouchi
2021
+ * varraynetcf.rb: VArrayNetCDF#write: debug unlim-dim treatment etc.
2022
+ VArrayNetCDF#val=: improved unlimited dim treatment.
2023
+ Fri Oct 24 2003 T Horinouchi
2024
+ * gphys.rb: enhanced GPhys#mean etc (VArray::NArray_type3_methods)
2025
+ to accept specification by name
2026
+ * grid.rb: changed Grid#axnames and Grid#lost_axes to duplicate
2027
+ the resultant array to return.
2028
+ Thu Oct 23 2003 T Horinouchi
2029
+ * gphys.rb: debug - Binary operators, GPhys#shape_coerce
2030
+ * varray.rb: aliases set_att to put_att
2031
+ Wed Oct 1 2003 T Horinouchi
2032
+ * subsetmapping.rb: debug for the irregular mapping
2033
+ * axis.rb: Axis[] was modified to accept NArray and Array
2034
+ Fri Sep 26 2003 T Horinouchi
2035
+ * gphys-0.2.1 released
2036
+ * varray.rb,varraycomposite.rb: set_att changed to return self
2037
+ * gphys_netcdf_io.rb: support multiple gphys output in a single
2038
+ file
2039
+ * testdata/cira86.dat: (added) text file to hold the CIRA86 data
2040
+ * sample/cira86_to_nc.rb: converts the CIRA data into NetCDF file
2041
+ via GPhys.
2042
+ Tue Sep 23 2003 T Horinouchi
2043
+ * axis.rb,grid.rb: use sprintf("%g",..) to format lost axis info.
2044
+ * varraycomposite.rb: further debug in [].
2045
+ * varray.rb: debug for NArray_type3_methods (NArrayMiss handling)
2046
+ * gphys_netcdf_io.rb: found bug in missing data handling. Not
2047
+ fully fixed but disabled -- waiting for the NArrayMiss handling
2048
+ support by RubyDCL.
2049
+ Mon Sep 22 2003 T Horinouchi
2050
+ * axis.rb: to require "numru/gphys/varraycomposite"
2051
+ * varraycomposite.rb: support the rubber dim. debug in [].
2052
+ * gphys_netcdf_io.rb: NetCDF_IO.open: support multiple files.
2053
+ Added a RD doc.
2054
+ Thu Sep 18 2003 T Horinouchi
2055
+ * gphys-0.2.0 released
2056
+ * doc/grads_gridded.html: (generated from grads_gridded.rb)
2057
+ * gphys.rb,grid.rb,varray.rb,ggraph.rb: added 3rd&4th args to "eval"
2058
+ for backtrace
2059
+ Tue Sep 16 2003 R Mizuta
2060
+ * gphys_grads_io.rb: (created)
2061
+ * varraygrads.rb: (created)
2062
+ * grads_gridded.rb: (created) classes for GrADS gridded datasets
2063
+ * testdata/T.jan.dat: (created) GrADS binary data
2064
+ * testdata/T.jan.ctl: (created) GrADS control file for T.jan.dat
2065
+ Wed Sep 3 2003 T Horinouchi
2066
+ * gphys.rb: modified GPhys#axis, GPhys#coord to support spec by name
2067
+ * varray.rb: added VArray#file
2068
+ * varraynetcdf.rb: added VArrayNetCDF#file
2069
+ Tue Sep 2 2003 T Horinouchi
2070
+ * gphys-0.1.0 released
2071
+ * sample/druby_serv2.rb: enhanced to accept a port specified
2072
+ * sample/druby_cli2.rb: changed to use the current GGraph.
2073
+ Fri Aug 29 2003 T Horinouchi
2074
+ * axis.rb: renamed Axis#mean to Axis#average, Axis#integ to
2075
+ Axis#integrate (thus renaming Grid#mean and GPhys#mean
2076
+ to Grid#average and GPhys#average and so on). Test programs are
2077
+ changed accordingly (axis.rb, grid.rb, gphys.rb, ggraph.rb,
2078
+ and ggraph_old.rb).
2079
+ * gphys.rb: GPhys#coord added (coord(i) is same as axis(i).pos)
2080
+ * grid.rb,gphys.rb: renamed collapsed_axes to lost_axes
2081
+ * varray.rb: set VArray#attr private. Defined VArray#(set|get)_att
2082
+ VArray#att_names. Aso changed corresponding to this change are
2083
+ varraynetcdf.rb, axis.rb, coordtransform.rb, grid.rb
2084
+ gphys_netcdf_io.rb, varraycomposite.rb, ggraph.rb ggraph_old.rb
2085
+ * varray.rb: added type1 methods such as sort and type2 methods
2086
+ such as mean, min, max. (type2 had been supported)
2087
+ Changed gphys.rb accordingly.
2088
+ * gphys.rb: made GPhys#grid protected
2089
+ Thu Aug 28 2003 T Horinouchi
2090
+ * grid.rb: modified Grid::[] to support the rubber dimension
2091
+ * gphys.rb: modified GPhys::[] & []= to support the rubber dimension
2092
+ Thu Aug 28 2003 T Horinouchi
2093
+ * gphys-0.0.6 released
2094
+ Wed Aug 27 2003 T Horinouchi
2095
+ * gphys.rb: added RD indexes
2096
+ * ggraph.rb: further built and documentation written. Now it has
2097
+ a basic graphic functionality.
2098
+ Tue Aug 26 2003 T Horinouchi
2099
+ * axis.rb: refined Axis#[] (no change in behavior). added Axis#cut*
2100
+ * grid.rb: modified Grid#cut* to depend on Axis#cut*
2101
+ * ggraph.rb: further built
2102
+ Mon Aug 25 2003 T Horinouchi
2103
+ * gphys.rb: added GPhys#cut*
2104
+ * grid.rb: slightly editted
2105
+ Mon Aug 25 2003 T Horinouchi
2106
+ * gphys-0.0.5 released
2107
+ * ggraph.rb: slightly enhanced (still underconstruction)
2108
+ Fri Aug 22 2003 T Horinouchi
2109
+ * varray.rb: debug VArray#inspect
2110
+ * grid.rb: added Grid#cut, Grid#cut_rank_conserving
2111
+ * ggraph.rb: enhanced (with many changes; but still underconstruction)
2112
+ Wed Aug 20 2003 T Horinouchi
2113
+ * gphys.rb: added methods axis and collapsed_axes, so that one
2114
+ does not have to put like gphys.grid.axis(1). Also added is
2115
+ rank, which of course must be.
2116
+ * grid.rb: renamed collapsed to collapsed_axes. Updated.
2117
+ * ggraph.rb: slightly modified (still underconstruction)
2118
+ * ggraph_old.rb: Updated
2119
+ Tue Aug 19 2003 T Horinouchi
2120
+ * sample/druby_cli1.rb,sample/druby_serv1.rb: updated
2121
+ * sample/druby_cli2.rb,sample/druby_serv2.rb: created
2122
+ Sun Aug 11 2003 T Horinouchi
2123
+ * gphys-0.0.4 released
2124
+ * varray.rb: added documentation; minor changes
2125
+ * varraynetcdf.rb,varraycomposite.rb: minor changes
2126
+ Sun Aug 10 2003 T Horinouchi
2127
+ * varraycomposite.rb: made to realize a composite VArray class
2128
+ VArrayComposite.
2129
+ Fri Aug 8 2003 T Horinouchi
2130
+ * varray.rb: minor change in inspect.
2131
+ * axis.rb: change implimentation of Axis#mean and Axis#integ
2132
+ --- to simplify the source code and not to use Proc.
2133
+ Also, use of the observer pattern to notify addion of similar
2134
+ methods was eliminated, so to add some has to be done before
2135
+ Grid or GPhys is loaded.
2136
+ * grid.rb,gphys.rb: minor changes corresponding to the change in
2137
+ axis.rb (see above).
2138
+ Mon Jun 23 2003 T Horinouchi
2139
+ * gphys-0.0.3 released (although the revision is still
2140
+ underway)
2141
+ * start CVS
2142
+ Jun 12-23 2003 T Horinouchi
2143
+ * Many updates such as direcotry reorganization, addition of
2144
+ coord*.rb, debug, etc.etc.
2145
+ Wed Jun 11 2003 T Horinouchi
2146
+ * axis.rb: loc -> pos
2147
+ * grid.rb: delete attr_reader axes and define axis/set_axis methods
2148
+ * gphys_netcdf_io.rb: define write
2149
+ Mon Jun 9 2003 T Horinouchi
2150
+ * axis.rb,grid.rb,gphys.rb: define copy (I will probably change
2151
+ the name). This is to make a deep clone, which possbly read
2152
+ data in a file (or files) and store them on memoty.
2153
+ Sun Jun 8 2003 T Horinouchi
2154
+ * ggraph.rb: saved and start writing from scratch (far from completed)
2155
+ Wed May 14 2003 T Horinouchi
2156
+ * gphys-0.0.2 released