quad_sphere 0.9.0 → 1.0.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.
- data/COPYING +18 -0
- data/README.md +153 -0
- data/examples/binning.rb +44 -0
- data/examples/distort_closure.rb +108 -0
- data/examples/gl1.rb +164 -0
- data/examples/gl2.rb +182 -0
- data/examples/grid.rb +69 -0
- data/lib/quad_sphere/csc.rb +1 -1
- data/lib/quad_sphere/version.rb +5 -0
- data/quad_sphere.gemspec +30 -0
- data/test/test_quad_sphere.rb +860 -0
- metadata +39 -40
metadata
CHANGED
@@ -1,68 +1,67 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: quad_sphere
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
- 0
|
10
|
-
version: 0.9.0
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Cesar Rincon
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2013-02-02 00:00:00 Z
|
12
|
+
date: 2013-02-04 00:00:00.000000000 Z
|
19
13
|
dependencies: []
|
14
|
+
description: ! 'An implementation of the quadrilateralised spherical cube, an
|
15
|
+
|
16
|
+
approximately equal-area projection of the sphere onto the faces of a
|
17
|
+
|
18
|
+
cube. It is useful for storing data collected on a spherical surface,
|
20
19
|
|
21
|
-
|
20
|
+
and for general mapmaking.
|
21
|
+
|
22
|
+
'
|
22
23
|
email: crincon@gmail.com
|
23
24
|
executables: []
|
24
|
-
|
25
25
|
extensions: []
|
26
|
-
|
27
26
|
extra_rdoc_files: []
|
28
|
-
|
29
|
-
|
27
|
+
files:
|
28
|
+
- README.md
|
29
|
+
- COPYING
|
30
|
+
- quad_sphere.gemspec
|
31
|
+
- examples/binning.rb
|
32
|
+
- examples/distort_closure.rb
|
33
|
+
- examples/gl1.rb
|
34
|
+
- examples/gl2.rb
|
35
|
+
- examples/grid.rb
|
30
36
|
- lib/quad_sphere.rb
|
31
37
|
- lib/quad_sphere/tangential.rb
|
32
38
|
- lib/quad_sphere/csc.rb
|
33
|
-
|
39
|
+
- lib/quad_sphere/version.rb
|
40
|
+
- test/test_quad_sphere.rb
|
41
|
+
homepage: https://github.com/crinc/QuadSphere
|
34
42
|
licenses: []
|
35
|
-
|
36
43
|
post_install_message:
|
37
44
|
rdoc_options: []
|
38
|
-
|
39
|
-
require_paths:
|
45
|
+
require_paths:
|
40
46
|
- lib
|
41
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
42
48
|
none: false
|
43
|
-
requirements:
|
44
|
-
- -
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
|
47
|
-
|
48
|
-
- 0
|
49
|
-
version: "0"
|
50
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ! '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
54
|
none: false
|
52
|
-
requirements:
|
53
|
-
- -
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
|
56
|
-
segments:
|
57
|
-
- 0
|
58
|
-
version: "0"
|
55
|
+
requirements:
|
56
|
+
- - ! '>='
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
59
|
requirements: []
|
60
|
-
|
61
60
|
rubyforge_project:
|
62
61
|
rubygems_version: 1.8.25
|
63
62
|
signing_key:
|
64
63
|
specification_version: 3
|
65
|
-
summary:
|
66
|
-
test_files:
|
67
|
-
|
64
|
+
summary: Quadrilateralised spherical cube projection
|
65
|
+
test_files:
|
66
|
+
- test/test_quad_sphere.rb
|
68
67
|
has_rdoc:
|