Returns the latitude (in radians) from the Mercator Y coordinate y.
y
static double inverseMercator(double y) => 2 * atan(exp(y)) - pi / 2;