-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeojson.py
More file actions
53 lines (41 loc) · 1.45 KB
/
geojson.py
File metadata and controls
53 lines (41 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import urllib.request, urllib.parse, urllib.error
import json
import ssl
# Important: As of January, 2024 this course no longer includes
# The use of Google's Geocoding API in the content. This
# has been replaced by OpenStreetMap data
# See the file opengeo.py
# This file is here for previous versions of the course
# materials and since it uses a proxy server to access the API,
# it should work for a while.
print("See https://www.py4e.com/code3/opengeo.py")
api_key = 42
# Ignore SSL certificate errors
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
while True:
address = input('Enter location: ')
if len(address) < 1: break
parms = dict()
parms['address'] = address
if api_key is not False: parms['key'] = api_key
url = serviceurl + urllib.parse.urlencode(parms)
print('Retrieving', url)
uh = urllib.request.urlopen(url, context=ctx)
data = uh.read().decode()
print('Retrieved', len(data), 'characters')
try:
js = json.loads(data)
except:
js = None
if not js or 'status' not in js or js['status'] != 'OK':
print('==== Failure To Retrieve ====')
print(data)
continue
print(json.dumps(js, indent=4))
lat = js['results'][0]['geometry']['location']['lat']
lng = js['results'][0]['geometry']['location']['lng']
print('lat', lat, 'lng', lng)
location = js['results'][0]['formatted_address']
print(location)