fidothe / osgb_convert

Super-simple pure Ruby OSGB-WGS84 conversion gem [has rough edges]
3 stars 1 forks source link

Any ideas for quickly reversing this? I'd like to take northing/easting and get lat/long #1

Closed alexslade closed 11 years ago

fidothe commented 11 years ago

It already does it (so I should probably improve the docs)

require 'osgb_convert'

northing = 124194
easting = 540434
grid_ref = OsgbConvert::GridRef.new(easting, northing)
grid_ref.wgs84
alexslade commented 11 years ago

Ah, yea. Thanks :)