Project

breasal

0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby gem that converts both British and Irish Eastings and northing to WGS84 latitude and longitude
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
>= 0
>= 0
 Project Readme

Build Status Dependency Status Coverage Status Code Climate Gem Version License Badges

Breasal

A Ruby gem that converts both British and Irish Eastings and northing to WGS84 latitude and longitude.

Based on the work by Andrew Sprinz at Lambeth Council, and created in anger as part of work on UK Postcodes

Breasal is the Welsh and Cornish God of all earth, so I thought him suitably Celtic to cover all the British isles.

Installation

Add this line to your application's Gemfile:

gem 'breasal'

And then execute:

$ bundle

Or install it yourself as:

$ gem install breasal

Usage

Provide an easting, northing and coordinate type (either :gb or :ie - default is :gb):

en = Breasal::EastingNorthing.new(easting: 412617, northing: 308885, type: :gb)

Get the WGS84 latlng:

en.to_wgs84 # => {:latitude=>52.67752501534847, :longitude=>-1.8148108086293673}

Contributing

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