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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
package clip
import (
"reflect"
"testing"
"github.com/paulmach/orb"
)
func TestInternalLine(t *testing.T) {
cases := []struct {
name string
bound orb.Bound
input orb.LineString
output orb.MultiLineString
}{
{
name: "clip line",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{30, 30}},
input: orb.LineString{
{-10, 10}, {10, 10}, {10, -10}, {20, -10}, {20, 10}, {40, 10},
{40, 20}, {20, 20}, {20, 40}, {10, 40}, {10, 20}, {5, 20}, {-10, 20},
},
output: orb.MultiLineString{
{{0, 10}, {10, 10}, {10, 0}},
{{20, 0}, {20, 10}, {30, 10}},
{{30, 20}, {20, 20}, {20, 30}},
{{10, 30}, {10, 20}, {5, 20}, {0, 20}},
},
},
{
name: "clips line crossign many times",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{20, 20}},
input: orb.LineString{
{10, -10}, {10, 30}, {20, 30}, {20, -10},
},
output: orb.MultiLineString{
{{10, 0}, {10, 20}},
{{20, 20}, {20, 0}},
},
},
{
name: "no changes if all inside",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{20, 20}},
input: orb.LineString{
{1, 1}, {2, 2}, {3, 3},
},
output: orb.MultiLineString{
{{1, 1}, {2, 2}, {3, 3}},
},
},
{
name: "empty if nothing in bound",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{2, 2}},
input: orb.LineString{
{10, 10}, {20, 20}, {30, 30},
},
output: nil,
},
{
name: "floating point example",
bound: orb.Bound{Min: orb.Point{-91.93359375, 42.29356419217009}, Max: orb.Point{-91.7578125, 42.42345651793831}},
input: orb.LineString{
{-86.66015624999999, 42.22851735620852}, {-81.474609375, 38.51378825951165},
{-85.517578125, 37.125286284966776}, {-85.8251953125, 38.95940879245423},
{-90.087890625, 39.53793974517628}, {-91.93359375, 42.32606244456202},
{-86.66015624999999, 42.22851735620852},
},
output: orb.MultiLineString{
{
{-91.91208030440808, 42.29356419217009},
{-91.93359375, 42.32606244456202},
{-91.7578125, 42.3228109416169},
},
},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := line(tc.bound, tc.input, false)
if !reflect.DeepEqual(result, tc.output) {
t.Errorf("incorrect clip")
t.Logf("%v", result)
t.Logf("%v", tc.output)
}
})
}
}
func TestInternalRing(t *testing.T) {
cases := []struct {
name string
bound orb.Bound
input orb.Ring
output orb.Ring
}{
{
name: "clips polygon",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{30, 30}},
input: orb.Ring{
{-10, 10}, {0, 10}, {10, 10}, {10, 5}, {10, -5},
{10, -10}, {20, -10}, {20, 10}, {40, 10}, {40, 20},
{20, 20}, {20, 40}, {10, 40}, {10, 20}, {5, 20},
{-10, 20}},
// note: we allow duplicate points if polygon endpoints are
// on the box boundary.
output: orb.Ring{
{0, 10}, {0, 10}, {10, 10}, {10, 5}, {10, 0},
{20, 0}, {20, 10}, {30, 10}, {30, 20}, {20, 20},
{20, 30}, {10, 30}, {10, 20}, {5, 20}, {0, 20},
},
},
{
name: "completely inside bound",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{10, 10}},
input: orb.Ring{
{3, 3}, {5, 3}, {5, 5}, {3, 5}, {3, 3},
},
output: orb.Ring{
{3, 3}, {5, 3}, {5, 5}, {3, 5}, {3, 3},
},
},
{
name: "completely around bound",
bound: orb.Bound{Min: orb.Point{1, 1}, Max: orb.Point{2, 2}},
input: orb.Ring{
{0, 0}, {3, 0}, {3, 3}, {0, 3}, {0, 0},
},
output: orb.Ring{{1, 2}, {1, 1}, {2, 1}, {2, 2}, {1, 2}},
},
{
name: "completely around touching corners",
bound: orb.Bound{Min: orb.Point{1, 1}, Max: orb.Point{3, 3}},
input: orb.Ring{
{0, 2}, {2, 0}, {4, 2}, {2, 4}, {0, 2},
},
output: orb.Ring{{1, 1}, {1, 1}, {3, 1}, {3, 1}, {3, 3}, {3, 3}, {1, 3}, {1, 3}, {1, 1}},
},
{
name: "around but cut corners",
bound: orb.Bound{Min: orb.Point{0.5, 0.5}, Max: orb.Point{3.5, 3.5}},
input: orb.Ring{
{0, 2}, {2, 4}, {4, 2}, {2, 0}, {0, 2},
},
output: orb.Ring{{0.5, 2.5}, {1.5, 3.5}, {2.5, 3.5}, {3.5, 2.5}, {3.5, 1.5}, {2.5, 0.5}, {1.5, 0.5}, {0.5, 1.5}, {0.5, 2.5}},
},
{
name: "unclosed ring",
bound: orb.Bound{Min: orb.Point{1, 1}, Max: orb.Point{4, 4}},
input: orb.Ring{
{2, 0}, {3, 0}, {3, 5}, {2, 5},
},
output: orb.Ring{{3, 1}, {3, 4}},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := ring(tc.bound, tc.input)
if !reflect.DeepEqual(result, tc.output) {
t.Errorf("incorrect clip")
t.Logf("%v", result)
t.Logf("%v", tc.output)
}
})
}
}
func TestLineString(t *testing.T) {
cases := []struct {
name string
bound orb.Bound
input orb.LineString
output orb.MultiLineString
}{
{
name: "clips line crossign many times",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{20, 20}},
input: orb.LineString{
{10, -10}, {10, 30}, {20, 30}, {20, -10},
},
output: orb.MultiLineString{
{{10, 0}, {10, 20}},
{{20, 20}, {20, 0}},
},
},
{
name: "touches the sides a bunch of times",
bound: orb.Bound{Min: orb.Point{1, 1}, Max: orb.Point{6, 6}},
input: orb.LineString{{2, 3}, {1, 4}, {2, 5}, {2, 6}, {3, 5}, {4, 6}, {5, 5}, {5, 7}, {0, 7}, {0, 3}, {2, 3}},
output: orb.MultiLineString{
{{2, 3}, {1, 4}, {2, 5}, {2, 6}, {3, 5}, {4, 6}, {5, 5}, {5, 6}},
{{1, 3}, {2, 3}},
},
},
{
name: "floating point example",
bound: orb.Bound{Min: orb.Point{-91.93359375, 42.29356419217009}, Max: orb.Point{-91.7578125, 42.42345651793831}},
input: orb.LineString{
{-86.66015624999999, 42.22851735620852}, {-81.474609375, 38.51378825951165},
{-85.517578125, 37.125286284966776}, {-85.8251953125, 38.95940879245423},
{-90.087890625, 39.53793974517628}, {-91.93359375, 42.32606244456202},
{-86.66015624999999, 42.22851735620852},
},
output: orb.MultiLineString{
{
{-91.91208030440808, 42.29356419217009},
{-91.93359375, 42.32606244456202},
{-91.7578125, 42.3228109416169},
},
},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := LineString(tc.bound, tc.input)
if !reflect.DeepEqual(result, tc.output) {
t.Errorf("incorrect clip")
t.Logf("%v", result)
t.Logf("%v", tc.output)
}
})
}
}
func TestLineString_OpenBound(t *testing.T) {
cases := []struct {
name string
bound orb.Bound
input orb.LineString
output orb.MultiLineString
}{
{
name: "clips line crossign many times",
bound: orb.Bound{Min: orb.Point{0, 0}, Max: orb.Point{20, 20}},
input: orb.LineString{
{10, -10}, {10, 30}, {20, 30}, {20, -10},
},
output: orb.MultiLineString{
{{10, 0}, {10, 20}},
},
},
{
name: "touches the sides a bunch of times",
bound: orb.Bound{Min: orb.Point{1, 1}, Max: orb.Point{6, 6}},
input: orb.LineString{{2, 3}, {1, 4}, {2, 5}, {2, 6}, {3, 5}, {4, 6}, {5, 5}, {5, 7}, {0, 7}, {0, 3}, {2, 3}},
output: orb.MultiLineString{
{{2, 3}, {1, 4}},
{{1, 4}, {2, 5}, {2, 6}},
{{2, 6}, {3, 5}, {4, 6}},
{{4, 6}, {5, 5}, {5, 6}},
{{1, 3}, {2, 3}},
},
},
{
name: "floating point example",
bound: orb.Bound{Min: orb.Point{-91.93359375, 42.29356419217009}, Max: orb.Point{-91.7578125, 42.42345651793831}},
input: orb.LineString{
{-86.66015624999999, 42.22851735620852}, {-81.474609375, 38.51378825951165},
{-85.517578125, 37.125286284966776}, {-85.8251953125, 38.95940879245423},
{-90.087890625, 39.53793974517628}, {-91.93359375, 42.32606244456202},
{-86.66015624999999, 42.22851735620852},
},
output: orb.MultiLineString{
{
{-91.91208030440808, 42.29356419217009},
{-91.93359375, 42.32606244456202},
}, {
{-91.93359375, 42.32606244456202},
{-91.7578125, 42.3228109416169},
},
},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := LineString(tc.bound, tc.input, OpenBound(true))
if !reflect.DeepEqual(result, tc.output) {
t.Errorf("incorrect clip")
t.Logf("%v", result)
t.Logf("%v", tc.output)
}
})
}
}
func TestRing_CompletelyOutside(t *testing.T) {
cases := []struct {
name string
bound orb.Bound
input orb.Ring
output orb.Ring
}{
{
name: "bound in lower left",
bound: orb.Bound{Min: orb.Point{-1, -1}, Max: orb.Point{0, 0}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound in lower right",
bound: orb.Bound{Min: orb.Point{3, -1}, Max: orb.Point{4, 0}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound in upper right",
bound: orb.Bound{Min: orb.Point{3, 3}, Max: orb.Point{4, 4}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound in upper left",
bound: orb.Bound{Min: orb.Point{-1, 3}, Max: orb.Point{0, 4}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound to the left",
bound: orb.Bound{Min: orb.Point{-1, -1}, Max: orb.Point{0, 3}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound to the right",
bound: orb.Bound{Min: orb.Point{3, -1}, Max: orb.Point{4, 3}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound to the top",
bound: orb.Bound{Min: orb.Point{-1, 3}, Max: orb.Point{3, 3}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
{
name: "bound to the bottom",
bound: orb.Bound{Min: orb.Point{-1, -1}, Max: orb.Point{3, 0}},
input: orb.Ring{
{1, 1}, {2, 1}, {2, 2}, {1, 2}, {1, 1},
},
output: nil,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := Ring(tc.bound, tc.input)
if !reflect.DeepEqual(result, tc.output) {
t.Errorf("incorrect clip")
t.Logf("%v %+v", result == nil, result)
t.Logf("%v %+v", tc.output == nil, tc.output)
}
})
}
}
|