In geo_util.py, this line gives me the correct lat lon in web mercator.
x2, y2 = transform(in_proj, out_proj, ulon, ulat)
But this last line (just before the return) seems to transform it back to lat lon in degrees:
x2, y2 = out_proj(x2, y2, inverse=True)
which I believe is incorrect. Am I missing something here?