Created
October 25, 2015 11:33
-
-
Save smakhtin/074e04a184f7df32157e to your computer and use it in GitHub Desktop.
Convert to and from Web Mercator
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
import math | |
def y2lat(a): | |
return 180.0/math.pi*(2.0*math.atan(math.exp(a*math.pi/180.0))-math.pi/2.0) | |
def lat2y(a): | |
return 180.0/math.pi*math.log(math.tan(math.pi/4.0+a*(math.pi/180.0)/2.0)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment