-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprepare_test.go
106 lines (72 loc) · 2.15 KB
/
prepare_test.go
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
package update
import (
"fmt"
"github.com/dsoprea/go-exif/v3"
"github.com/dsoprea/go-exif/v3/common"
"testing"
)
func TestPrepareDecimalGPSLatitudeTag(t *testing.T) {
ref := "N"
lat := 37.61799
r, err := PrepareDecimalGPSLatitudeTag(lat)
if err != nil {
t.Fatalf("Failed to prepare latitude '%v', %v", lat, err)
}
gd, err := exif.NewGpsDegreesFromRationals(ref, r.([]exifcommon.Rational))
if err != nil {
t.Fatalf("Failed to create NewGpsDegreesFromRationals, %v", err)
}
new_lat := gd.Degrees + (gd.Minutes / 60.0) + (gd.Seconds / 3600.0)
// we expect the conversion to be inexact beyond 3 decimal points
if fmt.Sprintf("%0.3f", lat) != fmt.Sprintf("%0.3f", new_lat) {
t.Fatalf("Failed to convert latitude")
}
}
func TestPrepareDecimalGPSLatitudeRefTag(t *testing.T) {
tests := map[string]float64{
"N": 37.61799,
"S": -45.788,
}
for ref, lat := range tests {
rsp, err := PrepareDecimalGPSLatitudeRefTag(lat)
if err != nil {
t.Fatalf("Failed to prepare GPSLatitudeRefTag %f, %v", lat, err)
}
if rsp != ref {
t.Fatalf("Invalid ref, expected '%s' but got '%s'", ref, rsp)
}
}
}
func TestPrepareDecimalGPSLongitudeTag(t *testing.T) {
ref := "W"
lon := -122.384864
r, err := PrepareDecimalGPSLongitudeTag(lon)
if err != nil {
t.Fatalf("Failed to prepare longitude '%v', %v", lon, err)
}
gd, err := exif.NewGpsDegreesFromRationals(ref, r.([]exifcommon.Rational))
if err != nil {
t.Fatalf("Failed to create NewGpsDegreesFromRationals, %v", err)
}
new_lon := gd.Degrees + (gd.Minutes / 60.0) + (gd.Seconds / 3600.0)
new_lon = -new_lon // W
// we expect the conversion to be inexact beyond 3 decimal points
if fmt.Sprintf("%0.3f", lon) != fmt.Sprintf("%0.3f", new_lon) {
t.Fatalf("Failed to convert longitude")
}
}
func TestPrepareDecimalGPSLongitudeRefTag(t *testing.T) {
tests := map[string]float64{
"E": 37.61799,
"W": -122.384864,
}
for ref, lon := range tests {
rsp, err := PrepareDecimalGPSLongitudeRefTag(lon)
if err != nil {
t.Fatalf("Failed to prepare GPSLongitudeRefTag %f, %v", lon, err)
}
if rsp != ref {
t.Fatalf("Invalid ref, expected '%s' but got '%s'", ref, rsp)
}
}
}