-
Notifications
You must be signed in to change notification settings - Fork 41
/
exif.lua
70 lines (64 loc) · 2.3 KB
/
exif.lua
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
-- Exif Parser
local function parseExif(exif)
-- date
local date = exif.DateTimeOriginal or exif.DateTimeDigitized or exif.DateTime
-- location
local location
if exif.GPSLongitudeRef then
-- parse GPS, and generate URLs (Google Maps for now)
local l1,l2,l3 = exif.GPSLongitude:gfind('(.+),%s+(.+),%s+(.+)')()
local L1,L2,L3 = exif.GPSLatitude:gfind('(.+),%s+(.+),%s+(.+)')()
if not l1 or not L1 then
l1,l2,l3 = exif.GPSLongitude:gfind('(.+) deg (.+)\' (.+)"')()
L1,L2,L3 = exif.GPSLatitude:gfind('(.+) deg (.+)\' (.+)"')()
end
if not l1 or not L1 then
l1,l2 = exif.GPSLongitude:gfind('(.+),(.+)%w$')()
L1,L2 = exif.GPSLatitude:gfind('(.+),(.+)%w$')()
l3,L3 = 0,0
end
local longitude, latitude
if not l1 or not L1 then
longitude = tonumber(exif.GPSLongitude)
latitude = tonumber(exif.GPSLatitude)
else
longitude = loadstring('return ' .. l1 .. ' + ' .. l2 .. '/60 + ' .. l3 .. '/3600')()
latitude = loadstring('return ' .. L1 .. ' + ' .. L2 .. '/60 + ' .. L3 .. '/3600')()
end
longitude = exif.GPSLongitudeRef:upper():sub(1,1) .. longitude
latitude = exif.GPSLatitudeRef:upper():sub(1,1) .. latitude
-- google lookup:
local url_google = 'https://maps.google.com/maps?q=' .. longitude .. ',' .. latitude
-- save:
location = {
longitude = longitude,
latitude = latitude,
url_google = url_google,
}
elseif exif.GPSLongitude and tonumber(exif.GPSLongitude) then
-- support floating point coordinates
local latitude = tonumber(exif.GPSLatitude)
if latitude < 0 then
latitude = 'S'..math.abs(latitude)
else
latitude = 'N'..math.abs(latitude)
end
local longitude = tonumber(exif.GPSLongitude)
if longitude < 0 then
longitude = 'W'..math.abs(longitude)
else
longitude = 'E'..math.abs(longitude)
end
-- google lookup:
local url_google = 'https://maps.google.com/maps?q=' .. longitude .. ',' .. latitude
-- save:
location = {
longitude = longitude,
latitude = latitude,
url_google = url_google,
}
end
-- Return date+location
return date, location
end
return parseExif