-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.py
108 lines (90 loc) · 4.68 KB
/
utils.py
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
"""Support functions"""
import requests
import urllib.parse
import re
def find_coord(obs):
"""Function to find latitude and longitude of a data point using
its address, branch name, center, district and state information.
If one of more match is found, then the coordinates are checked if
they are inside India's bounding box.
If nothing matches, it will return NaN in string format
Input:
obs: pd.Series object
Datapoint of one branch with info on address, branch name,
center, district and state
Output
(index,lat,long) : tuple object
Index od observation, latitude and longitude identified
"""
address = obs['Address']
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Bank + ', '+ obs.Branch + ', ' + obs.Center
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json&type=bank'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Bank + ', '+ obs.Branch + ', ' + obs.Center
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Bank + ', '+ obs.Branch + ', ' + obs.District
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json&type=bank'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Bank + ', '+ obs.Branch + ', ' + obs.District
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Branch + ', ' + obs.Center + ', ' + obs.District + ', ' + obs.State
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.Center + ', ' + obs.District + ', ' + obs.State
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
address = obs.District + ', ' + obs.State
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
if len(response) != 0:
for res in response:
if float(res['lon']) > 68.11 and float(res['lon']) < 97.4:
if float(res['lat']) > 6.46 and float(res['lat']) < 35.52:
return obs.name,res['lat'],res['lon']
return obs.name,'nan','nan'
def trim(x):
"""To remove postal office organizational naming in place name"""
y = re.split(r' S.O', x)[0]
y = re.split(r' H.O', y)[0]
y = re.split(r' P.O', y)[0]
y = re.split(r' G.P.O', y)[0]
return y