Last active
March 15, 2021 15:54
-
-
Save vasrap/5409402 to your computer and use it in GitHub Desktop.
Lat/Lon to Meters using Mercator projection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts "Enter latitude in decimal degrees:" | |
lat_deg = gets.to_f | |
puts "Enter longitude in decimal degrees:" | |
lon_deg = gets.to_f | |
lon_rad = (lon_deg / 180.0 * Math::PI) | |
lat_rad = (lat_deg / 180.0 * Math::PI) | |
sm_a = 6378137.0 | |
x = sm_a * lon_rad | |
y = sm_a * Math.log((Math.sin(lat_rad) + 1) / Math.cos(lat_rad)) | |
puts "x: " + x.to_s + ", y: " + y.to_s | |
# More information: http://gis.stackexchange.com/questions/15269/how-to-convert-lat-long-to-meters-using-mercator-projection-in-c |
arashmad
commented
Jan 9, 2021
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment