Project

cartier

0.0
No commit activity in last 3 years
No release in over 3 years
Cartier is a gem to be used to simply dealing with GPS data calculations such as distance, location, and bearing.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Cartier

Cartier is a gem used to simplify some common GPS type calcuations from a current project I've been working on.

Installation

Add this line to your application's Gemfile:

gem 'cartier'

And then execute:

$ bundle

Or install it yourself as:

$ gem install cartier

Usage

After installation one will need to create at minimum two instances of the Cartier::GPSLocation type.
For example, the CN Tower location would be created as such: cn_tower = Cartier::GPSLocation.new("43.64775237227008", "-79.38707828521729")
To determine the distance between two locations: Cartier::Navigation.haversine_distance(cn_tower, ago)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request