Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connect_gsi_api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect_gsi_api

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

ConnectGsiApi

緯度・経度を入力値に、国土地理院提供のAPI経由で二点間の距離を算出します。 本gemは、一回のリクエストで、一回だけ国土地理院提供のAPIを叩きます。 APIの使用回数上限については、国土地理院が提示しているAPI利用規約を参照してください。 また、APIの仕様上、日本の緯度・経度にしか対応していません。

Installation

Gemfile に下記の記述を追加してください。

gem 'connect_gsi_api'

その後、インストールをします:

$ bundle

もしくは自分で手動でインストールしてください:

$ gem install connect_gsi_api

Usage

まず、本Gemを使いたいファイルの中で、requireしてください。 その上で、地点1の緯度/経度、地点2の緯度/経度 を引数に ConnectGsiApi.distance2p を呼び出してください。

require "connect_gsi_api"

ConnectGsiApi.distance2p 35.6581, 139.701742, 36.123456, 138.705749

なお、パラメータ不正など、エラーが返ってくる呼び出しの場合は、nilが返ってくる仕様になっています。

また、動作確認目的として、コマンドでの呼び出しにも対応しています。

$ bundle exec calcdist 35.6581 139.701742 36.123456 138.705749
$ => 103682.866

License

本GemはMITライセンスです。 The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 23 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc