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
|
#!/usr/bin/env python3
import sys
import re
import json
from exif import Image
def format_dms(degrees, minutes, seconds, ref):
return_string = f"{degrees}°{minutes}'{seconds}\""
return_string = str(return_string.replace(',', '.'))
return_string = re.sub(r'[() ]', '', return_string)
return return_string + ref
def to_dec_deg(input_string):
deg, minutes, seconds, direction = re.split('[°\'"]', input_string)
return (float(deg) + float(minutes)/60 + float(seconds)/(60*60)) * (-1 if direction in ['W', 'S'] else 1)
def main():
filename = sys.argv[1]
with open(filename, 'rb') as image_file:
image = Image(image_file)
lat_deg, lat_sec, lat_min = image.gps_latitude
lat_ref = image.gps_latitude_ref
lon_deg, lon_sec, lon_min = image.gps_longitude
lon_ref = image.gps_longitude_ref
#
lat_formatted = format_dms(lat_deg, lat_sec, lat_min, lat_ref)
lon_formatted = format_dms(lon_deg, lon_sec, lon_min, lon_ref)
lat_dec_deg = to_dec_deg(lat_formatted)
lon_dec_deg = to_dec_deg(lon_formatted)
data = { "QUOTE":
{
"lat": round(lat_dec_deg, 6),
"lng": round(lon_dec_deg, 6),
"authors": ["SPYO"],
"image": str(sys.argv[1])
}
}
json_str = json.dumps(data, indent=4)
lines = json_str.splitlines()
trimmed = "\n".join(lines[1:-1])
print(trimmed + ',')
# print(json.dumps(data, indent=4) + ",")
if __name__ == '__main__':
main()
|