-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
utils.py
69 lines (61 loc) · 2.64 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
#!/usr/bin/env python3
import datetime
import requests
from geo import distance_between_two_points
def calculate_distance_between_nodes(node1, node2):
if node1 is None or node2 is None:
return None
if node1["position"] is None or node2["position"] is None:
return None
if 'latitude_i' not in node1["position"] or 'longitude_i' not in node1["position"] or 'latitude_i' not in node2["position"] or 'longitude_i' not in node2["position"] or node1["position"]["latitude_i"] is None or node1["position"]["longitude_i"] is None or node2["position"]["latitude_i"] is None or node2["position"]["longitude_i"] is None:
return None
return round(distance_between_two_points(
node1["position"]["latitude_i"] / 10000000,
node1["position"]["longitude_i"] / 10000000,
node2["position"]["latitude_i"] / 10000000,
node2["position"]["longitude_i"] / 10000000
), 2)
def convert_node_id_from_int_to_hex(id: int):
id_hex = f'{id:08x}'
return id_hex
def convert_node_id_from_hex_to_int(id: str):
if id.startswith('!'):
id = id.replace('!', '')
return int(id, 16)
def days_since_datetime(dt: datetime.datetime):
# Returns the number of days since the given datetime using UTC
now = datetime.datetime.now(datetime.timezone.utc)
if isinstance(dt, str):
dt = datetime.datetime.fromisoformat(dt)
diff = now - dt
return diff.days
def geocode_position(api_key: str, latitude: float, longitude: float):
if latitude is None or longitude is None:
return None
print(f"Geocoding {latitude}, {longitude}")
url = f"https://geocode.maps.co/reverse?lat={latitude}&lon={longitude}&api_key={api_key}"
response = requests.get(url)
if response.status_code != 200:
return None
print(f"Geocoded {latitude}, {longitude} to {response.json()}")
return response.json()
def filter_dict(d, whitelist):
"""
Recursively filter a dictionary to only include whitelisted keys.
:param d: The original dictionary or list.
:param whitelist: A dictionary that mirrors the structure of `d` with the keys you want to keep.
Nested dictionaries and lists should be specified with the keys you want to retain.
:return: A new dictionary or list containing only the whitelisted keys.
"""
if isinstance(d, dict):
return {
key: filter_dict(d[key], whitelist[key]) if isinstance(d[key], (dict, list)) else d[key]
for key in whitelist if key in d
}
elif isinstance(d, list):
return [
filter_dict(item, whitelist) if isinstance(item, dict) else item
for item in d
]
else:
return d # Return the value if it's neither a dict nor a list