-
Notifications
You must be signed in to change notification settings - Fork 9
/
utm_test.go
executable file
·276 lines (238 loc) · 6.16 KB
/
utm_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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package UTM_test
import (
"math"
"testing"
"github.com/im7mortal/UTM"
)
func round(f float64) float64 { return math.Floor(f + .5) }
// emulation for test only.
type testLatLon struct {
Latitude float64
Longitude float64
}
// emulation for test only.
type testCoordinate struct {
Easting float64
Northing float64
ZoneNumber int
ZoneLetter string
}
type testData struct {
LatLon testLatLon
UTM testCoordinate
northern bool
}
func getTestValues() []testData {
return []testData{
// Aachen, Germany
{
testLatLon{50.77535, 6.08389},
testCoordinate{294409, 5628898, 32, "U"},
true,
},
// New York, USA
{
testLatLon{40.71435, -74.00597},
testCoordinate{583960, 4507523, 18, "T"},
true,
},
// Wellington, New Zealand
{
testLatLon{-41.28646, 174.77624},
testCoordinate{313784, 5427057, 60, "G"},
false,
},
// Capetown, South Africa
{
testLatLon{-33.92487, 18.42406},
testCoordinate{261878, 6243186, 34, "H"},
false,
},
// Mendoza, Argentina
{
testLatLon{-32.89018, -68.84405},
testCoordinate{514586, 6360877, 19, "H"},
false,
},
// Fairbanks, Alaska, USA
{
testLatLon{64.83778, -147.71639},
testCoordinate{466013, 7190568, 6, "W"},
true,
},
// Ben Nevis, Scotland, UK
{
testLatLon{56.79680, -5.00601},
testCoordinate{377486, 6296562, 30, "V"},
true,
},
// Latitude 84
{
testLatLon{84, -5.00601},
testCoordinate{476594, 9328501, 30, "X"},
true,
},
}
}
func TestToLatLon(t *testing.T) {
t.Parallel()
for i, data := range getTestValues() {
latitude, longitude, err := UTM.ToLatLon(
data.UTM.Easting,
data.UTM.Northing,
data.UTM.ZoneNumber,
data.UTM.ZoneLetter)
if err != nil {
t.Fatal(err.Error())
}
if round(data.LatLon.Latitude) != round(latitude) {
t.Errorf("Latitude ToLatLon case %d", i)
}
if round(data.LatLon.Longitude) != round(longitude) {
t.Errorf("Longitude ToLatLon case %d", i)
}
}
}
func TestToLatLonWithNorthern(t *testing.T) {
t.Parallel()
emptyZoneLetter := ""
for i, data := range getTestValues() {
latitude, longitude, err := UTM.ToLatLon(
data.UTM.Easting,
data.UTM.Northing,
data.UTM.ZoneNumber,
emptyZoneLetter,
data.northern)
if err != nil {
t.Fatal(err.Error())
}
if round(data.LatLon.Latitude) != round(latitude) {
t.Errorf("Latitude TestToLatLonWithNorthern case %d", i)
}
if round(data.LatLon.Longitude) != round(longitude) {
t.Errorf("Longitude TestToLatLonWithNorthern case %d", i)
}
}
}
func TestFromLatLon(t *testing.T) {
t.Parallel()
for i, data := range getTestValues() {
easting, northing, zoneNumber, zoneLetter, err := UTM.FromLatLon(data.LatLon.Latitude, data.LatLon.Longitude, false)
if err != nil {
t.Fatal(err.Error())
}
if round(data.UTM.Easting) != round(easting) {
t.Errorf("Easting FromLatLon case %d", i)
}
if round(data.UTM.Northing) != round(northing) {
t.Errorf("Northing FromLatLon case %d", i)
}
if data.UTM.ZoneLetter != zoneLetter {
t.Errorf("ZoneLetter FromLatLon case %d", i)
}
if data.UTM.ZoneNumber != zoneNumber {
t.Errorf("ZoneNumber FromLatLon case %d", i)
}
}
}
func getBadInputLatLon() []testLatLon {
return []testLatLon{
{-81, 0},
{85, 0},
{0, -185},
{0, 185},
}
}
func TestFromLatLonBadInput(t *testing.T) {
t.Parallel()
for i, data := range getBadInputLatLon() {
_, _, _, _, err := UTM.FromLatLon(data.Latitude, data.Longitude, false)
if err == nil {
t.Errorf("Expected error. badInputLatLon TestFromLatLonBadInput case %d", i)
}
if _, ok := err.(UTM.InputError); !ok {
t.Error("Type of error must be UTM.InputError.")
}
}
latLon := testLatLon{}
latLon.Longitude = 0
for i := -8000.0; i < 8401.0; i++ {
latLon.Latitude = i / 100
_, _, _, _, err := UTM.FromLatLon(latLon.Latitude, latLon.Longitude, false)
if err != nil {
t.Errorf("not cover Latitude %f", i/100)
}
}
latLon.Latitude = 0
for i := -18000.0; i < 18001.0; i++ {
latLon.Longitude = i / 100
_, _, _, _, err := UTM.FromLatLon(latLon.Latitude, latLon.Longitude, false)
if err != nil {
t.Errorf("not cover Longitude %f", i/100)
}
}
}
func getBadInputToLatLon() []testCoordinate {
return []testCoordinate{
// out of range ZoneLetter
{377486, 6296562, 30, "Y"},
{377486, 6296562, 30, "B"},
{377486, 6296562, 30, "I"},
{377486, 6296562, 30, "i"},
{377486, 6296562, 30, "O"},
{377486, 6296562, 30, "o"},
// out of range ZoneNumber
{377486, 6296562, 0, "V"},
{377486, 6296562, 61, "V"},
// out of range Easting
{1000000, 6296562, 30, "V"},
{99999, 6296562, 30, "V"},
// out of range Northing
{377486, 10000001, 30, "V"},
{377486, -1, 30, "V"},
}
}
func TestToLatLonBadInput(t *testing.T) {
t.Parallel()
var err error
for i, data := range getBadInputToLatLon() {
_, _, err = UTM.ToLatLon(data.Easting, data.Northing, data.ZoneNumber, data.ZoneLetter)
if err == nil {
t.Errorf("Expected error. badInputToLatLon TestToLatLonBadInput case %d", i)
}
if _, ok := err.(UTM.InputError); !ok {
t.Error("Type of error must be UTM.InputError.")
}
}
coordinate := testCoordinate{
Easting: 377486,
Northing: 6296562,
ZoneNumber: 30,
}
_, _, err = UTM.ToLatLon(coordinate.Easting, coordinate.Northing, coordinate.ZoneNumber, "")
if err == nil {
t.Error("Expected error. too few arguments")
}
if _, ok := err.(UTM.InputError); !ok {
t.Error("Type of error must be UTM.InputError.")
}
coordinate.ZoneLetter = "V"
_, _, err = UTM.ToLatLon(coordinate.Easting, coordinate.Northing, coordinate.ZoneNumber, coordinate.ZoneLetter, true)
if err == nil {
t.Error("Expected error. too many arguments")
}
if _, ok := err.(UTM.InputError); !ok {
t.Error("Type of error must be UTM.InputError.")
}
letters := []string{
"X", "W", "V", "U", "T", "S", "R", "Q", "P", "N", "M", "L", "K", "J", "H", "G", "F", "E", "D", "C",
"x", "w", "v", "u", "t", "s", "r", "q", "p", "n", "m", "l", "k", "j", "h", "g", "f", "e", "d", "c",
}
for _, letter := range letters {
coordinate.ZoneLetter = letter
_, _, err = UTM.ToLatLon(coordinate.Easting, coordinate.Northing, coordinate.ZoneNumber, coordinate.ZoneLetter)
if err != nil {
t.Errorf("letter isn't covered. %s", letter)
}
}
}