Project

mapper

0.0
No commit activity in last 3 years
No release in over 3 years
A tiny geo coordinate converter - basically for plotting latitude/longitude pairs to an image
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Mapper - A tiny geo coordinate converter - basically for plotting latitude/longitude pairs to an image

Gem Version Installs

Installation

  • gem install mapper

Usage

require 'mapper'
#just initialize it with two known reference points on your map and you are ready to go!
mapper = Mapper.new({:lat=>48.13,:lon=>11.57,:x=>278,:y=>503}, {:lat=>53.55,:lon=>9.99,:x=>206,:y=>114})
#you can either add lat/lon and it will fill up the point with corresponding x/y
mapper.add_point(:lat=>52.52, :lon=>13.41)
#or add x/y and it will fill up the point with corresponding lat/lon
mapper.add_point(:x=>136, :y=>410)
#when you are done just work with the points (thinking about including a graphic gem for actual plotting)
mapper.each{|point| p point}
->  {:lat=>52.52, :lon=>13.41, :x=>361.848101265823, :y=>187.924354243542}
->  {:lat=>49.4257840616967, :lon=>8.45388888888889, :x=>136, :y=>410}

Notes

  • Mapper assumes your map is in the mercator projection! (http://en.wikipedia.org/wiki/Mercator_projection)
  • Luckily a lot of maps are: GoogleMaps, OpenStreetMap, ... :)
  • Mapper is NOT a high precision tool! But in most cases it should be just okay enough.