geoutm 1.0.0 → 1.0.1
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/lib/geoutm.rb +1 -1
- data/lib/geoutm/ellipsoid.rb +1 -1
- metadata +19 -15
data/lib/geoutm.rb
CHANGED
data/lib/geoutm/ellipsoid.rb
CHANGED
|
@@ -7,7 +7,7 @@ module GeoUtm
|
|
|
7
7
|
[ "Australian National", 6378160, 0.006694542],
|
|
8
8
|
[ "Bessel 1841", 6377397, 0.006674372],
|
|
9
9
|
[ "Bessel 1841 Nambia", 6377484, 0.006674372],
|
|
10
|
-
[ "Clarke 1866", 6378206, 0.006768658],
|
|
10
|
+
[ "Clarke 1866", 6378206.4, 0.006768658],
|
|
11
11
|
[ "Clarke 1880", 6378249, 0.006803511],
|
|
12
12
|
[ "Everest 1830 India", 6377276, 0.006637847],
|
|
13
13
|
[ "Fischer 1960 Mercury", 6378166, 0.006693422],
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geoutm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2012-06-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
description: Conversion between latitude and longitude coordinates and UTM coordiantes
|
|
26
31
|
email:
|
|
27
32
|
- tallak@tveide.net
|
|
@@ -30,19 +35,19 @@ extensions: []
|
|
|
30
35
|
extra_rdoc_files:
|
|
31
36
|
- README.rdoc
|
|
32
37
|
files:
|
|
38
|
+
- spec/latlon_spec.rb
|
|
33
39
|
- spec/geoutm_spec.rb
|
|
34
|
-
- spec/
|
|
35
|
-
- spec/spec.opts
|
|
40
|
+
- spec/spec_helper.rb
|
|
36
41
|
- spec/utm_spec.rb
|
|
37
42
|
- spec/testdata.yaml
|
|
38
|
-
- spec/
|
|
39
|
-
- spec/
|
|
40
|
-
- lib/geoutm.rb
|
|
41
|
-
- lib/geoutm/latlon.rb
|
|
42
|
-
- lib/geoutm/ellipsoid.rb
|
|
43
|
-
- lib/geoutm/utm.rb
|
|
44
|
-
- lib/geoutm/geo_utm_exception.rb
|
|
43
|
+
- spec/spec.opts
|
|
44
|
+
- spec/ellipsoid_spec.rb
|
|
45
45
|
- lib/geoutm/utm_zones.rb
|
|
46
|
+
- lib/geoutm/geo_utm_exception.rb
|
|
47
|
+
- lib/geoutm/utm.rb
|
|
48
|
+
- lib/geoutm/ellipsoid.rb
|
|
49
|
+
- lib/geoutm/latlon.rb
|
|
50
|
+
- lib/geoutm.rb
|
|
46
51
|
- LICENCE
|
|
47
52
|
- README.rdoc
|
|
48
53
|
- History.txt
|
|
@@ -68,9 +73,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
68
73
|
version: '0'
|
|
69
74
|
requirements: []
|
|
70
75
|
rubyforge_project: geoutm
|
|
71
|
-
rubygems_version: 1.8.
|
|
76
|
+
rubygems_version: 1.8.24
|
|
72
77
|
signing_key:
|
|
73
78
|
specification_version: 3
|
|
74
79
|
summary: Converting map coordinates
|
|
75
80
|
test_files: []
|
|
76
|
-
has_rdoc: true
|