Staging
v0.5.1
https://github.com/python/cpython
Revision f38b2b4ab13633d7cc1348ba8b083605a5d41a90 authored by Florent Xicluna on 20 March 2010, 20:38:20 UTC, committed by Florent Xicluna on 20 March 2010, 20:38:20 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r79144 | florent.xicluna | 2010-03-20 21:30:53 +0100 (sam, 20 mar 2010) | 2 lines

  #8133: Use appropriate Unicode decomposition on MacOS X platform.
........
1 parent 7c4afcb
Raw File
Tip revision: f38b2b4ab13633d7cc1348ba8b083605a5d41a90 authored by Florent Xicluna on 20 March 2010, 20:38:20 UTC
Merged revisions 79144 via svnmerge from
Tip revision: f38b2b4
antigravity.py

import webbrowser
import hashlib

webbrowser.open("http://xkcd.com/353/")

def geohash(latitude, longitude, datedow):
    '''Compute geohash() using the Munroe algorithm.

    >>> geohash(37.421542, -122.085589, b'2005-05-26-10458.68')
    37.857713 -122.544543

    '''
    # http://xkcd.com/426/
    h = hashlib.md5(datedow).hexdigest()
    p, q = [('%f' % float.fromhex('0.' + x)) for x in (h[:16], h[16:32])]
    print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))
back to top