ruby-netcdf 0.7.1 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/.ChangeLog.until20150117 +447 -0
- data/.gitignore +4 -6
- data/ChangeLog +392 -383
- data/LICENSE.txt +32 -57
- data/Rakefile +36 -1
- data/{extconf.rb → ext/numru/extconf.rb} +2 -2
- data/{netcdfraw.c → ext/numru/netcdfraw.c} +318 -320
- data/lib/numru/netcdf/version.rb +7 -0
- data/lib/numru/netcdf.rb +806 -0
- data/lib/{netcdf_miss.rb → numru/netcdf_miss.rb} +0 -0
- data/ruby-netcdf-bigmem.gemspec +29 -0
- data/ruby-netcdf.gemspec +8 -13
- data/test/aref_aset.rb +63 -33
- data/test/char_var.rb +32 -21
- data/test/clone.rb +46 -51
- data/test/create_tmp.rb +17 -13
- data/test/def_var_with_dim.rb +29 -11
- data/test/factor_offset.rb +77 -46
- data/test/putatt.rb +71 -49
- data/test/test.rb +197 -190
- data/test/type.rb +27 -11
- metadata +37 -24
- data/.rspec +0 -2
- data/.travis.yml +0 -3
- data/bin/console +0 -14
- data/bin/setup +0 -7
- data/lib/netcdf.rb +0 -808
- data/lib/version.rb +0 -5
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ZjMwMWY1OTU2ZmVlZjlmNTA1ZThmMTE2NjIyNzBmYTk4YzA5NTYwZg==
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b3ac5fbb186a99861d7c2f689fa0b94e39e62e561afa28e38aebd24409582146
|
4
|
+
data.tar.gz: 2937a996154966b367bb8e428c40b770b97618d32b545cfac3eb885d83e6df45
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
NjdmNjk3Yjc5Y2FkMjljNDcwMTgyYjE4ZjViMTQ5MTc1MjU2MTUxMDI4ZWJj
|
11
|
-
MzcwNTk3Y2NjOGQ1NDg4MDk3Nzg1Y2VkNTg1YmIxMmY1YmFiZjY=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
M2JlNWVhZTYyNDQwYjQxNjk3MWQ2MTQzYTA4NWZiNWNmNTY2ZWQzNjdjYWJi
|
14
|
-
ODc3MDUyZjcxNDQ1YjA1OWZjYmY3NGUyNzZmNTRhNjI1MjcxZGVkZmFlZGY0
|
15
|
-
OWZhZjY5ZjdlN2IzN2RhN2NlODYxYmQ0OTg4YzAxNDZkMDk0OTE=
|
6
|
+
metadata.gz: 5bbbd6e7ee5ac57d8d37c4eb5a853a0dd15a1990a532abaac7b04f697896bf7e74c8130633b3aea91487261061b0f7ec510c81b6319cd8eaffa206b31c60ec88
|
7
|
+
data.tar.gz: 366f5f7d15ba8d3900dcbd738ee8a88eb3697549380efecf26194daac54f320ff0ebc6ed425bb6973caac3bde684201e2911c053cfc18a32733824f4b0795368
|
@@ -0,0 +1,447 @@
|
|
1
|
+
Tue Jan 27 2015 T Horinouchi
|
2
|
+
* ruby-netcdf-0.7.1 released (relase tag: ruby-netcdf-0_7_1)
|
3
|
+
Tue Jan 27 2015 T Horinouchi
|
4
|
+
* doc/ updated
|
5
|
+
* demo/demo5-netcdf4.rb: created
|
6
|
+
* netcdfraw.c:
|
7
|
+
* added new NetCDF-4 methods:
|
8
|
+
* NetCDFVar::deflate : to set compression
|
9
|
+
* NetCDFVar::deflate_params : returns current values of
|
10
|
+
compression parameters
|
11
|
+
* NetCDFVar::endian= : set (change) the endian
|
12
|
+
* NetCDFVar::endian : returns the current endian setting
|
13
|
+
* added new constants: NC_ENDIAN_NATIVE (=0),
|
14
|
+
NC_ENDIAN_LITTLE (=1), NC_ENDIAN_BIG (=2)
|
15
|
+
* updated the safe-level condition, which was missed in the
|
16
|
+
change on Jan 22.
|
17
|
+
Fri Jan 23 2015 T Horinouchi
|
18
|
+
* doc/ updated
|
19
|
+
Thu Jan 22 2015 T Horinouchi
|
20
|
+
* ruby-netcdf-0.7.0 released (relase tag: ruby-netcdf-0_7_0)
|
21
|
+
Thu Jan 22 2015 T Horinouchi
|
22
|
+
* netcdfraw.c:
|
23
|
+
* revised based on the patch posted by seiya with
|
24
|
+
[dennou-ruby:003705] but adopted the typedef in the latest
|
25
|
+
narray-bigmem (namely, used na_shape_t).
|
26
|
+
* changed rb_secure(4) to rb_secure(3), since security
|
27
|
+
level 4 is abolished in ruby 2.
|
28
|
+
* further type update to na_shape_t (not covered
|
29
|
+
by the patch)
|
30
|
+
* deleted the unused variable nc_tlen in many methods.
|
31
|
+
* lib/netcdf.rb: revised along the patch [dennou-ruby:003705].
|
32
|
+
* extconf.rb: supported to configure gem-installed narray
|
33
|
+
Mon Sep 8 2014 T Horinouchi
|
34
|
+
* lib/netcdf.rb: Tentative treatment of the very slow netcdf-4's
|
35
|
+
strided reading.
|
36
|
+
Sat Sep 6 2014 T Horinouchi
|
37
|
+
* netcdfraw.c: Added constants such as NC_NETCDF4;
|
38
|
+
This enables one to individually specify the creation format by
|
39
|
+
using the low level interface NetCDF.nc_create
|
40
|
+
* lib/netcdf.rb: Supported the "default" file creation format
|
41
|
+
by adding NetCDF.creation_format= and NetCDF.creation_format.
|
42
|
+
* lib/netcdf.rb: Refactoring of NetCDF#simple_get.
|
43
|
+
Sat Sep 6 2014 T Horinouchi
|
44
|
+
* extconf.rb
|
45
|
+
* introduced the macro NCVER
|
46
|
+
* changed to give a higer priority to NetCDF 4;
|
47
|
+
* added $vendorarchdir to dir_config
|
48
|
+
* netcdfraw.c: Added the class method NetCDF.libvers (<- nc_inq_libvers)
|
49
|
+
* lib/netcdf.rb: Added the class constant NCVERSION (<- NetCDF.libvers)
|
50
|
+
Mon Aug 25 2014 T Horinouchi
|
51
|
+
* netcdfraw.c: to avoid a compile error when -Werror=format-security
|
52
|
+
Sun Feb 19 2011 T Horinouchi
|
53
|
+
* ruby-netcdf-0.6.6 released (relase tag: ruby-netcdf-0_6_6)
|
54
|
+
* lib/netcdf.rb: method pack: debug of enbug made
|
55
|
+
when 1.1 -> 1.2 (cvs tag) commited in Jan 2010.
|
56
|
+
* netcdfraw.c: Added macro NC_RAISE2. Enhanced error
|
57
|
+
messaging in NetCDF_open and NetCDF_create to show file name.
|
58
|
+
|
59
|
+
Thu Feb 17 2011 T Horinouchi
|
60
|
+
* ruby-netcdf-0.6.5 released (relase tag: ruby-netcdf-0_6_5)
|
61
|
+
Thu Feb 17 2011 T Horinouchi
|
62
|
+
* extconf.rb: Debug to have the --disable-opendap option really work
|
63
|
+
Sat Feb 12 2011 T Horinouchi
|
64
|
+
* ruby-netcdf-0.6.5 preview release.
|
65
|
+
Thu Dec 23 2010 T Koshiro
|
66
|
+
* test/aref_aset.rb : updated for Ruby 1.9.2
|
67
|
+
* lib/netcdf.rb: NetCDF.clean_tmpfile : lambda -> proc
|
68
|
+
* verified that all test programs work fine with Ruby 1.9.2.
|
69
|
+
|
70
|
+
Tue Dec 14 2010 T Koshiro
|
71
|
+
* netcdfraw.c : nctype2natype : char* -> const char*
|
72
|
+
* test/aref_aset.rb, test/factor_offset.rb : bug fix.
|
73
|
+
|
74
|
+
Mon Dec 13 2010 T Koshiro
|
75
|
+
* netcdfraw.c : patch for Ruby 1.9.2
|
76
|
+
- by S Kouketsu (dennou-ruby:003191)
|
77
|
+
- by T Koshiro (dennou-ruby:003226)
|
78
|
+
|
79
|
+
Mon Mar 15 2010 T Horinouchi
|
80
|
+
* ruby-netcdf-0.6.4 released (relase tag: ruby-netcdf-0_6_4)
|
81
|
+
|
82
|
+
Thu Jan 14 2010 T Horinouchi < T Koshiro
|
83
|
+
* netcdfraw.c : patch for Ruby 1.9.1 (dennou-ruby:003138)
|
84
|
+
* extconf.rb : patch for NetCDF-4.1-beta2 (dcdvlop Nov 20, 2009)
|
85
|
+
|
86
|
+
Fri Aug 15 2008 T Horinouchi
|
87
|
+
* lib/netcdf_miss.rb: in __interpret_missing_params,
|
88
|
+
changed just to warn, not to raise an exception,
|
89
|
+
if the missing value or fill value is within the
|
90
|
+
valid range (warning can be suppressed by $VERBOSE = nil)
|
91
|
+
Thu Jul 17 2008 T Horinouchi
|
92
|
+
* lib/netcdf.rb: NetCDFVar's private method pack : to take
|
93
|
+
round if the type of self is integer.
|
94
|
+
* lib/netcdf_miss.rb: debug in the handling of missing data
|
95
|
+
specification using the external data type.
|
96
|
+
Wed Jul 16 2008 T Horinouchi < M Otsuka
|
97
|
+
* netcdfraw.c : patch for Ruby 1.9
|
98
|
+
Tue Dec 25 2007 T Horinouchi
|
99
|
+
* ruby-netcdf-0.6.3 released
|
100
|
+
* netcdfra.c : (kind of) bugfix. (default attribute type for
|
101
|
+
Fixnum and Bignum was changed from NA_SINT to NA_LINT).
|
102
|
+
* lib/netcdf_miss.rb: improved to judge missing_value validity
|
103
|
+
considering its typecode.
|
104
|
+
Thu Jun 30 2005
|
105
|
+
* netcdf.rb: NetCDFVar#[] : debug for Array/NArray indices
|
106
|
+
Thu Jun 23 2005 T Horinouchi < S Koshiro
|
107
|
+
* ruby-netcdf-0.6.2 re-released (I am really sorry about that)
|
108
|
+
* extconf.rb: updated to configure the prefix for DODS (useful if
|
109
|
+
the DODS is installed in a non-standard path)
|
110
|
+
Wed Jun 22 2005 T Horinouchi
|
111
|
+
* ruby-netcdf-0.6.2 released
|
112
|
+
* extconf.rb: updated to support opendap 3.5
|
113
|
+
Fri May 13 2005 T Horinouchi
|
114
|
+
* ruby-netcdf-0.6.1 released
|
115
|
+
Mon Apr 11 2005 Takeshi Horinouchi
|
116
|
+
* netcdfraw.c: changed global variables such as mNumRu to file locale.
|
117
|
+
Tue Mar 15 2005 Takeshi Horinouchi
|
118
|
+
* netcdfraw.c: debug: changed the type of c_stride from size_t to
|
119
|
+
ptrdiff_t. Removed unsuned variables.
|
120
|
+
Mon Mar 14 2005 Takeshi Horinouchi
|
121
|
+
* ruby-netcdf-0.6.0 released
|
122
|
+
* netcdfraw.c: NetCDF_get_var*_*: debug for rank-zero scalar
|
123
|
+
NetCDFVar. It used to SEGV.
|
124
|
+
NetCDF_get_var_*, which reads the whole variable,
|
125
|
+
is modified to return in a NArray of shape==[1].
|
126
|
+
On the other hand, subset reading by NetCDF_get_var[s1]_*
|
127
|
+
is prohibited for rank-zero scalars by raising an exception.
|
128
|
+
* lib/netcdf.rb: minor modification in [], to support its call
|
129
|
+
without arguments of a rank-zero scalar.
|
130
|
+
* netcdfraw.c: debug: changed size_t to int when NArray functions
|
131
|
+
are called (for 64-bit machines).
|
132
|
+
* extconf.rb: minor change in opendap configuration.
|
133
|
+
Thu Mar 10 2005 Takeshi Horinouchi
|
134
|
+
* extconf.rb: to link OPeNDAP/DODS-enabled version of NetCDF
|
135
|
+
if available and if --disable-opendap is not specified.
|
136
|
+
* lib/netcdf.rb: created pack and unpack by separating from
|
137
|
+
scaled_put and scaled_get, respectvely. Changed type to
|
138
|
+
unpack in to follow the coerce mechanism, so the upacked
|
139
|
+
type depend on the type of scale_factor and add_offset.
|
140
|
+
Renamed NetCDFVar.scaled_get_type[=] to NetCDFVar.unpack_type[=].
|
141
|
+
* lib/netcdf_miss.rb: revised [put|get]_with_miss_and_scaling:
|
142
|
+
Now, missing data handling using valid_* / missing_value is applied
|
143
|
+
basically to packed data, which is consistent with most
|
144
|
+
conventions. However, it is applied to unpacked data
|
145
|
+
if and only if the type of valid_* / missing_value is not the same as
|
146
|
+
the packed data and is the samed as the unpacked data.
|
147
|
+
* doc/ Updated in response to the modification.
|
148
|
+
Mon Jun 7 2004 Takeshi Horinouchi
|
149
|
+
* ruby-netcdf-0.5.5 released
|
150
|
+
Wed Apr 28 2004 Takeshi Horinouchi < S. Nishizawa
|
151
|
+
* lib/netcdf.rb: minor debug in [](l.662) and []= (l.733 & l.736)
|
152
|
+
to avoid error with NArrayMiss.
|
153
|
+
Mon Mar 8 2004 Takeshi Horinouchi
|
154
|
+
* ruby-netcdf-0.5.4 released
|
155
|
+
* lib/netcdf.rb: created NetCDFVar.scaled_get_type= and
|
156
|
+
NetCDFVar.scaled_get_type
|
157
|
+
Mon Feb 23 2004 Takeshi Horinouchi
|
158
|
+
* lib/netcdf_miss.rb: debug in __interpret_missing_params
|
159
|
+
Tue Oct 28 2003 Takeshi Horinouchi
|
160
|
+
* lib/netcdf.rb: support empty [], []=. Debug in []=.
|
161
|
+
Fri Oct 2 2003 Takeshi Horinouchi
|
162
|
+
* ruby-netcdf-0.5.3 released
|
163
|
+
* lib/netcdf.rb: (by S Nishizawa) enhanced NetCDF#[]= to support
|
164
|
+
array indices.
|
165
|
+
* lib/netcdf.rb: supported the rubber dimension (=false) in
|
166
|
+
NetCDF#[] and NetCDF#[]=.
|
167
|
+
* doc/*rd: updated for NetCDF#[] and NetCDF#[]=
|
168
|
+
* INSTALL: updated
|
169
|
+
Thu Oct 2 2003 Takeshi Horinouchi < S Nishizawa
|
170
|
+
* lib/netcdf.rb: enhanced NetCDF#[] to support array indices.
|
171
|
+
Tue Sep 23 2003 Takeshi Horinouchi
|
172
|
+
* extconf.rb: debug for windows (by T Koshiro)
|
173
|
+
* lib/netcdf_miss.rb: debug get_with_miss_*
|
174
|
+
Wed Aug 27 2003 Takeshi Horinouchi
|
175
|
+
* ruby-netcdf-0.5.2 released
|
176
|
+
* Verified that all test programs work fine with Ruby 1.8.0.
|
177
|
+
* netcdfraw.c: functions NetCDF_dim, NetCDF_var (methods
|
178
|
+
NetCDF#dim, NetCDF#var). Changed behavior back to return nil
|
179
|
+
if not found (by name), as opposed to the change on Feb 3 2003.
|
180
|
+
Debug NetCDF_att_rename (NetCDFAtt#name=).
|
181
|
+
Init_netcdfraw: No longer asks whether NumRu has been
|
182
|
+
defined -- ok for Ruby 1.6.5 or so or later
|
183
|
+
* doc/Ref_man.rd,doc/Ref_man_jp.rd: updated for the changes above
|
184
|
+
* test/test.rb updated for the debug of NetCDFAtt#name=.
|
185
|
+
* lib/netcdf.rb: editted NetCDF#vars and NetCDF#dims not to change
|
186
|
+
the behavior despite the change above. Corrected exception types
|
187
|
+
to raise where needed.
|
188
|
+
Tue Aug 19 2003 Takeshi Horinouchi
|
189
|
+
* demo/demo4-copy.rb: created
|
190
|
+
Tue Aug 12 2003 Takeshi Horinouchi
|
191
|
+
* ruby-netcdf-0.5.1 released
|
192
|
+
* extconf.rb: do not edit "install:" anymore (for Ruby 1.8; works
|
193
|
+
with 1.6 too.) / Debug
|
194
|
+
* doc/Ref_man.rd,doc/Ref_man_jp.rd: corrected a few typos.
|
195
|
+
|
196
|
+
Tue Aug 12 2003 Takeshi Horinouchi
|
197
|
+
* ruby-netcdf-0.5.0 released
|
198
|
+
* lib/netcdf_miss.rb: created. handles data missing by NArrayMiss.
|
199
|
+
* doc/Ref_man.rd,doc/Ref_man_jp.rd: updated.
|
200
|
+
|
201
|
+
Mon Aug 11 2003 Takeshi Horinouchi
|
202
|
+
* extconf.rb: modification to cover Cygwin
|
203
|
+
* netcdfraw.c: extern -> EXTERN
|
204
|
+
* lib/netcdf.rb: renamed get|put as simple_(get|put) and
|
205
|
+
made get|put aliased to them. Changed scaled_(get|put)
|
206
|
+
to depend on simple_(put|get). This is to allow the user
|
207
|
+
to redefine get|put, if he/she likes, as:
|
208
|
+
alias get scaled_get
|
209
|
+
alias put scaled_put
|
210
|
+
Or (by using singleton methods)
|
211
|
+
def a_ncvar.get(*arg)
|
212
|
+
scaled_get(*arg)
|
213
|
+
end
|
214
|
+
def a_ncvar.put(*arg)
|
215
|
+
scaled_put(*arg)
|
216
|
+
end
|
217
|
+
Now these do not cause recurrence. By doing so, one can
|
218
|
+
also change the behavior of [] and []=.
|
219
|
+
|
220
|
+
Sat Mar 24 2003 Takeshi Horinouchi
|
221
|
+
* ruby-netcdf-0.4.0 released
|
222
|
+
Sat Mar 22 2003 Takeshi Horinouchi
|
223
|
+
* lib/netcdf.rb: NetCDFVar#[]: behavior changed -- to eliminate the
|
224
|
+
dimensions designated by Integer's (for better agreement with
|
225
|
+
NArray#[])
|
226
|
+
* doc/: correct the description of the IO mode for NetCDF.open
|
227
|
+
Fri Mar 21 2003 Takeshi Horinouchi
|
228
|
+
* ruby-netcdf-0.3.9 released
|
229
|
+
Wed Mar 19 2003 Takeshi Horinouchi
|
230
|
+
* netcdfraw.c: changed return values of NetCDF#redef and NetCDF#enddef
|
231
|
+
(NetCDF_redef, NetCDF_enddef) --- return true if succesful and
|
232
|
+
nil if not (the latter means that the file is already in
|
233
|
+
define mode for redef and that it is already in the data mode
|
234
|
+
for enddef). Previously, these methods always retuned nil.
|
235
|
+
* doc/: updated
|
236
|
+
* lib/netcdf.rb: DEBUG [] and []= : treatment of the end of ranges.
|
237
|
+
Tue Mar 18 2003 Takeshi Horinouchi
|
238
|
+
* netcdfraw.c: added NetCDF#define_mode?
|
239
|
+
(NetCDF_whether_in_define_mode)
|
240
|
+
Mon Mar 17 2003 Takeshi Horinouchi
|
241
|
+
* ruby-netcdf-0.3.8 released
|
242
|
+
* netcdfraw.c: deleted function NetCDF_put_var1_long, which was
|
243
|
+
unnecessary (not called by anything).
|
244
|
+
* netcdfraw.c: added methods NetCDFVar#typcode, NetCDFAtt#typcode
|
245
|
+
(functions NetCDF_var_typecode, NetCDF_att_typecode)
|
246
|
+
* netcdfraw.c: NetCDFVar#def_var(NetCDF_def_var) functionarity enhanced
|
247
|
+
to accept NArray's typcodes to specifiy a variable type (vartye).
|
248
|
+
* netcdfraw.c:put_var_*(NetCDF_put_var_*),put_vars_*(NetCDF_put_vars_*)
|
249
|
+
functionality enhanced to accept scalar values to set uniform values
|
250
|
+
* lib/netcdf.rb alias rank ndims (in NetCDFVar)
|
251
|
+
* doc/Ref_man* updated accordingly
|
252
|
+
Fri Mar 14 2003 Takeshi Horinouchi
|
253
|
+
* ruby-netcdf-0.3.7 released
|
254
|
+
Mon Feb 5 2003 Takeshi Horinouchi
|
255
|
+
* doc/Ref_man.rd,doc/Ref_man_jp.rd update (added [] and []= methods)
|
256
|
+
Mon Feb 3 2003 Takeshi Horinouchi
|
257
|
+
* netcdf.rb: added NetCDF#dims, NetCDF#vars
|
258
|
+
* netcdfraw.f: functions NetCDF_dim, NetCDF_var (methods
|
259
|
+
NetCDF#dim, NetCDF#var). Changed behavior to raise exception
|
260
|
+
if not found (by name).
|
261
|
+
Thu Jan 30 2003 Takeshi Horinouchi
|
262
|
+
* ruby-netcdf-0.3.6 released
|
263
|
+
* netcdfraw.c: debug NetCDF_free and NetCDF_close not to close
|
264
|
+
a file that has already been closed
|
265
|
+
* netcdfraw.c: debug nc_mark_obj -- incorrect typing (though in
|
266
|
+
many cases innocuous)
|
267
|
+
* demo/: deleted *_withAdvancedDCL.rb (obsolete)
|
268
|
+
|
269
|
+
Tue Jun 11 2002 Takeshi Horinouchi
|
270
|
+
* ruby-netcdf-0.3.5 released
|
271
|
+
* netcdfraw.rb: eliminated references to char *na_typestring[]
|
272
|
+
(to make the source compilable with narray-0.5.6p2)
|
273
|
+
* lib/netcdf.rb: eliminated uri methods: this is for a future
|
274
|
+
incorpolation of DODS
|
275
|
+
* demo/demo[23]*:written to use RubyDCL directly instead of AdvancedDCL
|
276
|
+
|
277
|
+
Tue Feb 26 2002 Takeshi Horinouchi
|
278
|
+
* ruby-netcdf-0.3.4 released
|
279
|
+
|
280
|
+
Sun Feb 24 2002 Takeshi Horinouchi
|
281
|
+
* lib/netcdf.rb: NetCDF#open minor debug
|
282
|
+
|
283
|
+
Thu Dec 27 2001 Takeshi Horinouchi
|
284
|
+
* extconf.rb: corrected an error message
|
285
|
+
|
286
|
+
Thu Dec 26 2001 Takeshi Horinouchi
|
287
|
+
* ruby-netcdf-0.3.3 released
|
288
|
+
* lib/netcdf.rb: changes are made to get around a bug in NArray.
|
289
|
+
Should be re-changed to the original if the bug is fixed.
|
290
|
+
(The changed pars are marked by "TEMPORARY CHANGE 2001/12/27" in
|
291
|
+
the source code)
|
292
|
+
* netcdfraw.c: debug NetCDF_get_vars_sint
|
293
|
+
* doc/Ref_man*rd: added the usage section.
|
294
|
+
|
295
|
+
Thu Dec 26 2001 Takeshi Horinouchi
|
296
|
+
* ruby-netcdf-0.3.2 released
|
297
|
+
* doc/Ref_man*rd: added a "Data Type" section. Plus, some updates
|
298
|
+
* lib/netcdf.rb: added NetCDF#scaled_put and NetCDF#scaled_get
|
299
|
+
* netcdfraw.c,lib/netcdf.rb: added methods to treat the "char" type
|
300
|
+
|
301
|
+
Thu Dec 26 2001 Takeshi Horinouchi
|
302
|
+
* ruby-netcdf-0.3.1 released
|
303
|
+
* doc/Ref_man*rd: updated
|
304
|
+
* lib/netcdf/rb: added NetCDF#def_var_with_dim
|
305
|
+
* netcdfraw.c: NetCDF*_eql: debug / do not redefine eql?, since the
|
306
|
+
hash method is not refefined
|
307
|
+
* lib/netcdf/rb: added NetCDFDim#length_ul0
|
308
|
+
* netcdfraw.c: NetCDF#close: error will not be raised on NetcdfBadid
|
309
|
+
* lib/netcdf/rb: added NetCDFVar#shape_current, NetCDFVar#shape_ul0
|
310
|
+
* lib/netcdf/rb: added NetCDF.create_tmp -- temporary file
|
311
|
+
* lib/netcdf/rb: NetCDFVar#uri returns path+'?var='+name instead
|
312
|
+
of path+'?'+name
|
313
|
+
|
314
|
+
Thu Dec 23 2001 Takeshi Horinouchi
|
315
|
+
* ruby-netcdf-0.3.0 released
|
316
|
+
* netcdfraw.c: NetCDFVar#vartype is aliased to NetCDFVar#ntype
|
317
|
+
* INSTALL: updated
|
318
|
+
* extconf.rb: updated thoroughly (better handling of dependent libs)
|
319
|
+
* lib/netcdr.rb: NetCDF.open: changed mode specification --
|
320
|
+
it became much closer to that for the File class
|
321
|
+
(Also, NetCDF.create was changed a little -- but no effect for users)
|
322
|
+
* netcdfraw.c: NetCDF_open was modified to be a simple wrapper
|
323
|
+
only of nc_open.
|
324
|
+
* netcdfraw.c: completely renew NetCDF_put_att__ --> NArray available
|
325
|
+
(accordingly changed are NetCDF_(put_att|put_att_var|att_put), and
|
326
|
+
lib/netcdf.rb:NetCDF(|Var)#put_att,NetCDFAtt#put)
|
327
|
+
* netcdfraw.c: minor debug -- eliminate global variables rb_cNetCDF*
|
328
|
+
* netcdfraw.c: initialization of mNumRu was improved
|
329
|
+
|
330
|
+
Thu Dec 7 2001 Takeshi Horinouchi
|
331
|
+
* ruby-netcdf-0.2.0 released
|
332
|
+
* lib/netcdf.rb: debug NetCDFVar#[], NetCDFVar#[]=
|
333
|
+
* doc/Ref_man[_jp].rd: updated
|
334
|
+
* netcdfraw.c: added clone methods
|
335
|
+
* netcdfraw.c: added security check
|
336
|
+
nc_open, nc_create: Check_SafeStr(filename)
|
337
|
+
file modifying methods: rb_secure(4)
|
338
|
+
file reading methods: taint return values
|
339
|
+
* netcdfraw.c: remove unused def of "new" (it's in netcdf.rb)
|
340
|
+
|
341
|
+
Thu Dec 6 2001 Takeshi Horinouchi
|
342
|
+
* ruby-netcdf-0.1.10 released
|
343
|
+
* demo/demo2-graphic.rb adapted to advanceddcl-0.2.0
|
344
|
+
* demo/demo3-ncepclim.rb minor change
|
345
|
+
* netcdfraw.c: rename mNum as mNumRu; initialize it only at first time
|
346
|
+
* mkdir test/; mv test.rb test/; and updated test.rb (to include NumRu)
|
347
|
+
* correctet ChangeLog
|
348
|
+
|
349
|
+
?? Nov? ?? 2001 Naoki Kawanabe (log added by Horinouchi)
|
350
|
+
* netcdf.rb added NetCDFVar#[] and NetCDFVar#[]=
|
351
|
+
|
352
|
+
Sat Nov 16 2001 Takeshi Horinouchi
|
353
|
+
* netcdf.rb: added NetCDFVar.new, NetCDFVar.open (these are the same)
|
354
|
+
|
355
|
+
Sat Nov ?? 2001 Naoki Kawanabe (log added by Horinouchi)
|
356
|
+
* ruby-netcdf-0.1.9 released
|
357
|
+
* extconf.rb debug
|
358
|
+
|
359
|
+
Sat Nov 03 2001 Naoki Kawanabe
|
360
|
+
* ruby-netcdf-0.1.7 released (memo by Horinouchi: this should be 0.1.8)
|
361
|
+
* changed install directry (require 'netcdf' -> require
|
362
|
+
'numru/netcdf')
|
363
|
+
* added module 'NumRu'
|
364
|
+
* changed class name (NetCDF -> NumRu::NetCDF etc.)
|
365
|
+
* demo program renewed
|
366
|
+
Thu Oct 25 2001 Takeshi Horinouchi
|
367
|
+
|
368
|
+
* ruby-netcdf-0.1.7 released
|
369
|
+
* doc/Ref_man.rd Created (English translation)
|
370
|
+
* doc/Ref_man_jp.rd Revised
|
371
|
+
* netcdfraw.c, NetCDF_att_copy: support file as a destination
|
372
|
+
(global attribute)
|
373
|
+
|
374
|
+
Thu Oct 23 2001 Takeshi Horinouchi
|
375
|
+
|
376
|
+
* doc/Ref_man_jp.html regenerated from doc/Ref_man_jp.rd
|
377
|
+
* doc/Ref_man_jp.rd Revised.
|
378
|
+
* doc/Ref_man_jp.rd index added.
|
379
|
+
|
380
|
+
Thu Oct 23 2001 Takeshi Horinouchi
|
381
|
+
|
382
|
+
* ruby-netcdf-0.1.6 released
|
383
|
+
* NetCDFruby is renamed to RubyNetCDF.
|
384
|
+
Documents are changed accordingly.
|
385
|
+
* INSTALL was made
|
386
|
+
* Ref_man_jp.rd: a bit modified
|
387
|
+
* documents moved to doc/
|
388
|
+
* Ref_man_jp.[doc|pdf] is renamed to Ref_man_jp_obsolete.[doc|pdf]
|
389
|
+
Will not be maintained any more.
|
390
|
+
|
391
|
+
Fri Oct 05, 2001 Naoki Kawanabe <kawanabe@kurasc.kyoto-u.ac.jp>
|
392
|
+
|
393
|
+
* version 0.1.5 released
|
394
|
+
* added Ref_man_jp.rd and Ref_man_jp.html (in Japanese)
|
395
|
+
|
396
|
+
Wed Sep 21, 2001 Takeshi Horiouchi <horinout@kurasc.kyoto-u.ac.jp>
|
397
|
+
|
398
|
+
* version 0.1.4 released
|
399
|
+
* netcdfraw.c: debug get_var_<type> correct dimension order
|
400
|
+
* test.rb truely get rid of xmp
|
401
|
+
|
402
|
+
Wed Sep 20, 2001 Takeshi Horiouchi <horinout@kurasc.kyoto-u.ac.jp>
|
403
|
+
|
404
|
+
* version 0.1.3 released
|
405
|
+
* README_JP.txt modified accordingly
|
406
|
+
* extconf.rb modifyed (support the "test" target)
|
407
|
+
* netcdf.rb: debug (NetCDFAtt#put)
|
408
|
+
* netcdfraw.c: debug (NetCDF_put_att, NetCDF_put_att_var)
|
409
|
+
* test.rb --> debug (usage of NetDCFAtt#put)
|
410
|
+
* test.rb --> do not use xmp. Accordingly, xmp.rb is removed from
|
411
|
+
the package
|
412
|
+
|
413
|
+
Wed Sep 20, 2001 Takeshi Horiouchi <horinout@kurasc.kyoto-u.ac.jp>
|
414
|
+
|
415
|
+
* version 0.1.2 re-released
|
416
|
+
* xmp.rb (an almost standard program) is copied to the top directory
|
417
|
+
* version 0.1.2 released
|
418
|
+
* changed extconf.rb
|
419
|
+
use standard mkmf.rb
|
420
|
+
Makefile modified after creation by mkmf
|
421
|
+
* mv netcdf.rb lib/netcdf.rb
|
422
|
+
|
423
|
+
Wed Sep 19, 2001 Takeshi Horiouchi <horinout@kurasc.kyoto-u.ac.jp>
|
424
|
+
|
425
|
+
* started ToDo list
|
426
|
+
|
427
|
+
Wed Sep 19, 2001 Takeshi Horiouchi <horinout@kurasc.kyoto-u.ac.jp>
|
428
|
+
|
429
|
+
* version 0.1.1 released
|
430
|
+
* Reference manual (in japanese) updated and renamed to Ref_man_jp*
|
431
|
+
* mkmf.rb changed (*.nc included for cleaning), README_JP.txt
|
432
|
+
changed accordingly
|
433
|
+
* demo directly added:
|
434
|
+
demo/demo1-create-alt.rb
|
435
|
+
demo/demo1-create.rb
|
436
|
+
demo/demo2-graphic.rb
|
437
|
+
demo/demo2-graphic_old.rb
|
438
|
+
demo/demo3-ncepclim.rb
|
439
|
+
* netcdfraw.c: NetCDFDim#unlimdim? added
|
440
|
+
* (acutally on Sep 12) netcdf.rb: NetCDFVar#put_att added
|
441
|
+
NetCDF#put_att debug
|
442
|
+
* (acutally on Sep 12) netcdfraw.c: a number of debug,
|
443
|
+
NetCDF_put_att_var (NetCDFVar#put_attraw) added
|
444
|
+
|
445
|
+
Wed Sep 19, 2001 Toshihiro Sakakima <sakakima@kurasc.kyoto-u.ac.jp>
|
446
|
+
|
447
|
+
* version 0.01 released
|
data/.gitignore
CHANGED