hubeny 0.1.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1b48e5f1a30b594217ab298f761802c898184893
4
+ data.tar.gz: aa681be450aa3bd39c1143712fff23225d9fe1b4
5
+ SHA512:
6
+ metadata.gz: 66d3dbbd92704120259d8452ba30bdf7d8999e954759af04d1aa1b0ad9a156acab93b675a5e162556b5b3edfe80149001137f1f9d8d5c0ff0de9c557a39e0c26
7
+ data.tar.gz: 739a562305e815d89046672c587e0bd30968cd2452ee3a2d9c3ddeebfc435d6c4dac1aa16ac4620c162c22c83674084407c0148a052855d106754a91d7b38647
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in hubeny.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Aoyama, Shotaro
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # Hubeny
2
+
3
+ Calculate the distance of two latitudes and longitudes using Hubeny's formula.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'hubeny'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install hubeny
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ puts Hubeny.distance(35.65500, 139.74472, 36.10056, 140.09111)
25
+ ```
26
+
27
+
28
+ ## License
29
+
30
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
31
+
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "hubeny"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "hubeny"
5
+
6
+ if ARGV.length < 4
7
+ puts "Usage: hubeny lat1 lng1 lat2 lng2"
8
+ exit 1
9
+ end
10
+
11
+ lat1 = ARGV[0].to_f
12
+ lng1 = ARGV[1].to_f
13
+ lat2 = ARGV[2].to_f
14
+ lng2 = ARGV[3].to_f
15
+ algorithm = (ARGV[4] || "hubeny").to_sym
16
+
17
+ puts Hubeny.distance(lat1, lng1, lat2, lng2)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'hubeny/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "hubeny"
8
+ spec.version = Hubeny::VERSION
9
+ spec.authors = ["Aoyama, Shotaro"]
10
+ spec.email = ["aosho235@gmail.com"]
11
+
12
+ spec.summary = %q{Calculate the distance of two latitudes and longitudes using Hubeny's formula.}
13
+ spec.description = %q{Calculate the distance of two latitudes and longitudes using Hubeny's formula.}
14
+ spec.homepage = "https://github.com/aoyama-val/ruby-hubeny"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ #spec.metadata['allowed_push_host'] = "Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "bin"
30
+ spec.executables = ["hubeny"]
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.13"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ end
@@ -0,0 +1,91 @@
1
+ require "hubeny/version"
2
+
3
+ module Hubeny
4
+ DEG2RAD = Math::PI / 180.0
5
+ RAD2DEG = 180.0 / Math::PI
6
+
7
+ # ベッセル楕円体( 旧日本測地系)
8
+ BESSEL_R_X = 6377397.155000 # 赤道半径
9
+ BESSEL_R_Y = 6356079.000000 # 極半径
10
+
11
+ # GRS80(世界測地系)
12
+ GRS80_R_X = 6378137.000000 # 赤道半径
13
+ GRS80_R_Y = 6356752.314140 # 極半径
14
+
15
+ # WGS84(GPS)
16
+ WGS84_R_X = 6378137.000000 # 赤道半径
17
+ WGS84_R_Y = 6356752.314245 # 極半径
18
+
19
+ @gcs = 2 # 測地系
20
+
21
+ def self.distance(lat1, lng1, lat2, lng2, algorithm: :hubeny)
22
+ case algorithm
23
+ when :hubeny
24
+ return self.hubeny(lat1, lng1, lat2, lng2)
25
+ when :haversine
26
+ return self.haversine(lat1, lng1, lat2, lng2)
27
+ else
28
+ raise "Algorithm '#{algorithm}' is not implemented."
29
+ end
30
+ end
31
+
32
+ def self.haversine(lat1, lng1, lat2, lng2)
33
+ lat1 *= DEG2RAD
34
+ lat2 *= DEG2RAD
35
+ lng1 *= DEG2RAD
36
+ lng2 *= DEG2RAD
37
+ d1 = Math::sin(lat1) * Math::sin(lat2)
38
+ d2 = Math::cos(lat1) * Math::cos(lat2) * Math::cos(lng2 - lng1)
39
+ d0 = r_x * Math::acos(d1 + d2)
40
+ return d0
41
+ end
42
+
43
+ def self.hubeny(lat1, lng1, lat2, lng2)
44
+ lat1 *= DEG2RAD
45
+ lat2 *= DEG2RAD
46
+ lng1 *= DEG2RAD
47
+ lng2 *= DEG2RAD
48
+
49
+ a_x = lng1 - lng2
50
+ a_y = lat1 - lat2
51
+
52
+ p = (lat1 + lat2) / 2.0
53
+
54
+ e = Math::sqrt((r_x ** 2 - r_y ** 2) / (r_x ** 2))
55
+
56
+ w = Math::sqrt(1 - (e ** 2) * ((Math::sin(p)) ** 2))
57
+
58
+ m = r_x * (1 - e ** 2) / (w ** 3)
59
+
60
+ n = r_x / w
61
+
62
+ d = (a_y * m) ** 2
63
+ d += (a_x * n * Math::cos(p)) ** 2
64
+ d = Math::sqrt(d)
65
+ return d
66
+ end
67
+
68
+ def self.r_x
69
+ case @gcs
70
+ when 0
71
+ r_x = BESSEL_R_X
72
+ when 1
73
+ r_x = GRS80_R_X
74
+ when 2
75
+ r_x = WGS84_R_X
76
+ end
77
+ return r_x
78
+ end
79
+
80
+ def self.r_y
81
+ case @gcs
82
+ when 0
83
+ r_y = BESSEL_R_Y
84
+ when 1
85
+ r_y = GRS80_R_Y
86
+ when 2
87
+ r_y = WGS84_R_Y
88
+ end
89
+ return r_y
90
+ end
91
+ end
@@ -0,0 +1,3 @@
1
+ module Hubeny
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hubeny
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Aoyama, Shotaro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-12-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Calculate the distance of two latitudes and longitudes using Hubeny's
42
+ formula.
43
+ email:
44
+ - aosho235@gmail.com
45
+ executables:
46
+ - hubeny
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - bin/console
56
+ - bin/hubeny
57
+ - bin/setup
58
+ - hubeny.gemspec
59
+ - lib/hubeny.rb
60
+ - lib/hubeny/version.rb
61
+ homepage: https://github.com/aoyama-val/ruby-hubeny
62
+ licenses:
63
+ - MIT
64
+ metadata: {}
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ requirements: []
80
+ rubyforge_project:
81
+ rubygems_version: 2.5.1
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: Calculate the distance of two latitudes and longitudes using Hubeny's formula.
85
+ test_files: []