3 nominatim.openstreetmap.org API
10 reqstr = "http://maps.rvb.name/geocode.php?lat=%s&lon=%s" %(lat,lon)
11 headers = { 'User-Agent' : 'PyRunGPS/1.0', 'Referer' : 'https://maps.rvb.name' }
12 req = urllib2.Request(reqstr, None, headers)
13 page = urllib2.urlopen(req).read()
19 def __init__(self, lat, lon):
21 self.printable = GetDescr(lat,lon)