gs2crmod 0.11.43 → 0.11.44
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/gs2crmod.gemspec +2 -2
- data/lib/gs2crmod/read_netcdf.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5197ea3c7dba3dc25d28454a22b25f5076f9dfb6
|
|
4
|
+
data.tar.gz: dfa1db2d52bd29742da3a887c816819155efe4ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5013e4366302ebcb9923f4583c13aedc48dc204be746e5f5ce67295c33fd73d078a70012bd4731cc9bfa4865a26da92cca97d4dd5a9d5f9a95bb49db93c0b0bc
|
|
7
|
+
data.tar.gz: 7c9049232cf22fecc70108e3b7ec92de9b7f976fa2e686e6271bbac86b0f45633ecca7c43f66dd41c28181f2e35b64666a06e41a3ea891efd256b7e52319e75c
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.11.
|
|
1
|
+
0.11.44
|
data/gs2crmod.gemspec
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: gs2crmod 0.11.
|
|
5
|
+
# stub: gs2crmod 0.11.44 ruby lib
|
|
6
6
|
# stub: ext/extconf.rb
|
|
7
7
|
|
|
8
8
|
Gem::Specification.new do |s|
|
|
9
9
|
s.name = "gs2crmod"
|
|
10
|
-
s.version = "0.11.
|
|
10
|
+
s.version = "0.11.44"
|
|
11
11
|
|
|
12
12
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
13
13
|
s.require_paths = ["lib"]
|
data/lib/gs2crmod/read_netcdf.rb
CHANGED
|
@@ -197,10 +197,12 @@ def hyperviscosity_graphkit(options)
|
|
|
197
197
|
raise "This only works for spectrogk" unless spectrogk?
|
|
198
198
|
options[:modify_variable] = Proc.new do |varname, narray, dimhash|
|
|
199
199
|
#dimnames = dimhash.keys
|
|
200
|
-
ky = dimhash['Y'].to_a.to_gslv
|
|
201
|
-
kx = dimhash['X'].to_a.to_gslv.to_box_order
|
|
202
200
|
shape = narray.shape
|
|
203
201
|
if varname == "gnew2_ta"
|
|
202
|
+
#p dimhash
|
|
203
|
+
#p dimhash['Y']
|
|
204
|
+
ky = dimhash['Y'].to_a.to_gslv
|
|
205
|
+
kx = dimhash['X'].to_a.to_gslv.to_box_order
|
|
204
206
|
shape = narray.shape
|
|
205
207
|
for ig in 0...shape[0]
|
|
206
208
|
for it in 0...shape[1]
|