-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
geom.go
558 lines (459 loc) · 10.4 KB
/
geom.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
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
// Package geom describes geometry interfaces.
package geom
import (
"math"
"reflect"
)
// Geometry is an object with a spatial reference.
// if a method accepts a Geometry type it's only expected to support the geom types in this package
type Geometry interface{}
// Pointer is a point with two dimensions.
type Pointer interface {
Geometry
XY() [2]float64
}
// PointZer is a 3D point.
type PointZer interface {
Geometry
XYZ() [3]float64
}
// PointMer is a 2D+1D point.
type PointMer interface {
Geometry
XYM() [3]float64
}
// PointZMer is a 3D+1D point.
type PointZMer interface {
Geometry
XYZM() [4]float64
}
// PointSer is a 2D point + SRID
type PointSer interface {
Geometry
XYS() struct {
Srid uint32
Xy Point
}
}
// PointZSer is a 3D point + SRID
type PointZSer interface {
Geometry
XYZS() struct {
Srid uint32
Xyz PointZ
}
}
// PointMSer is a 2D+1D point + SRID
type PointMSer interface {
Geometry
XYMS() struct {
Srid uint32
Xym PointM
}
}
// PointZMSer is a 3D+1D point + SRID
type PointZMSer interface {
Geometry
XYZMS() struct {
Srid uint32
Xyzm PointZM
}
}
// MultiPointer is a geometry with multiple points.
type MultiPointer interface {
Geometry
Points() [][2]float64
}
// MultiPointZer is a geometry with multiple 3D points.
type MultiPointZer interface {
Geometry
Points() [][3]float64
}
// MultiPointMer is a geometry with multiple 2+1D points.
type MultiPointMer interface {
Geometry
Points() [][3]float64
}
// MultiPointZMer is a geometry with multiple 3+1D points.
type MultiPointZMer interface {
Geometry
Points() [][4]float64
}
// MultiPointSer is a MultiPoint + SRID.
type MultiPointSer interface {
Geometry
Points() struct {
Srid uint32
Mp MultiPoint
}
}
// MultiPointZSer is a MultiPointZ + SRID.
type MultiPointZSer interface {
Geometry
Points() struct {
Srid uint32
Mpz MultiPointZ
}
}
// MultiPointMSer is a MultiPointM + SRID.
type MultiPointMSer interface {
Geometry
Points() struct {
Srid uint32
Mpm MultiPointM
}
}
// MultiPointZMSer is a MultiPointZM + SRID.
type MultiPointZMSer interface {
Geometry
Points() struct {
Srid uint32
Mpzm MultiPointZM
}
}
// LineStringer is a line of two or more points.
type LineStringer interface {
Geometry
Vertices() [][2]float64
}
// LineStringMer is a line of two or more M points.
type LineStringMer interface {
Geometry
Vertices() [][3]float64
}
// LineStringZer is a line of two or more Z points.
type LineStringZer interface {
Geometry
Vertices() [][3]float64
}
// LineStringZMer is a line of two or more ZM points.
type LineStringZMer interface {
Geometry
Vertices() [][4]float64
}
// LineStringSer is a line of two or more points + SRID.
type LineStringSer interface {
Geometry
Vertices() struct {
Srid uint32
Ls LineString
}
}
// LineStringMSer is a line of two or more M points + SRID.
type LineStringMSer interface {
Geometry
Vertices() struct {
Srid uint32
Lsm LineStringM
}
}
// LineStringZSer is a line of two or more Z points + SRID.
type LineStringZSer interface {
Geometry
Vertices() struct {
Srid uint32
Lsz LineStringZ
}
}
// LineStringZMSer is a line of two or more ZM points + SRID.
type LineStringZMSer interface {
Geometry
Vertices() struct {
Srid uint32
Lszm LineStringZM
}
}
// MultiLineStringer is a geometry with multiple LineStrings.
type MultiLineStringer interface {
Geometry
LineStrings() [][][2]float64
}
// MultiLineZStringer is a geometry with multiple LineZStrings.
type MultiLineStringZer interface {
Geometry
LineStringZs() [][][3]float64
}
// MultiLineMStringer is a geometry with multiple LineMStrings.
type MultiLineStringMer interface {
Geometry
LineStringMs() [][][3]float64
}
// MultiLineZMStringer is a geometry with multiple LineZMStrings.
type MultiLineStringZMer interface {
Geometry
LineStringZMs() [][][4]float64
}
// MultiLineSStringer is a geometry with multiple LineSStrings.
type MultiLineStringSer interface {
Geometry
MultiLineStrings() struct {
Srid uint32
Mls MultiLineString
}
}
// MultiLineZSStringer is a geometry with multiple LineZSStrings.
type MultiLineStringZSer interface {
Geometry
MultiLineStringZs() struct {
Srid uint32
Mlsz MultiLineStringZ
}
}
// MultiLineMSStringer is a geometry with multiple LineMSStrings.
type MultiLineStringMSer interface {
Geometry
MultiLineStringMs() struct {
Srid uint32
Mlsm MultiLineStringM
}
}
// MultiLineZMSStringer is a geometry with multiple LineZMSStrings.
type MultiLineStringZMSer interface {
Geometry
MultiLineStringZMs() struct {
Srid uint32
Mlszm MultiLineStringZM
}
}
// Polygoner is a geometry consisting of multiple Linear Rings.
// There must be only one exterior LineString with a clockwise winding order.
// There may be one or more interior LineStrings with a counterclockwise winding orders.
// It is assumed that the last point is connected to the first point, and the first point is NOT duplicated at the end.
type Polygoner interface {
Geometry
LinearRings() [][][2]float64
}
type PolygonZer interface {
Geometry
LinearRings() [][][3]float64
}
type PolygonMer interface {
Geometry
LinearRings() [][][3]float64
}
type PolygonZMer interface {
Geometry
LinearRings() [][][4]float64
}
type PolygonSer interface {
Geometry
LinearRings() struct {
Srid uint32
Pol Polygon
}
}
type PolygonZSer interface {
Geometry
LinearRings() struct {
Srid uint32
Polz PolygonZ
}
}
type PolygonMSer interface {
Geometry
LinearRings() struct {
Srid uint32
Polm PolygonM
}
}
type PolygonZMSer interface {
Geometry
LinearRings() struct {
Srid uint32
Polzm PolygonZM
}
}
// MultiPolygoner is a geometry of multiple polygons.
type MultiPolygoner interface {
Geometry
Polygons() [][][][2]float64
}
// Collectioner is a collections of different geometries.
type Collectioner interface {
Geometry
Geometries() []Geometry
}
// getCoordinates is a helper function for GetCoordinates to avoid too many
// array copies and still provide a convenient interface to the user.
func getCoordinates(g Geometry, pts *[]Point) error {
switch gg := g.(type) {
default:
return ErrUnknownGeometry{g}
case Pointer:
*pts = append(*pts, Point(gg.XY()))
return nil
case MultiPointer:
mpts := gg.Points()
for i := range mpts {
*pts = append(*pts, Point(mpts[i]))
}
return nil
case LineStringer:
mpts := gg.Vertices()
for i := range mpts {
*pts = append(*pts, Point(mpts[i]))
}
return nil
case MultiLineStringer:
for _, ls := range gg.LineStrings() {
if err := getCoordinates(LineString(ls), pts); err != nil {
return err
}
}
return nil
case Polygoner:
for _, ls := range gg.LinearRings() {
if err := getCoordinates(LineString(ls), pts); err != nil {
return err
}
}
return nil
case MultiPolygoner:
for _, p := range gg.Polygons() {
if err := getCoordinates(Polygon(p), pts); err != nil {
return err
}
}
return nil
case Collectioner:
for _, child := range gg.Geometries() {
if err := getCoordinates(child, pts); err != nil {
return err
}
}
return nil
}
}
/*
GetCoordinates return a list of points that make up a geometry. This makes no
attempt to remove duplicate points.
*/
func GetCoordinates(g Geometry) (pts []Point, err error) {
// recursively retrieve points.
err = getCoordinates(g, &pts)
return pts, err
}
// getExtent is a helper function to efficiently build an Extent without
// collecting all coordinates first.
func getExtent(g Geometry, e *Extent) error {
switch gg := g.(type) {
default:
return ErrUnknownGeometry{g}
case Pointer:
e.AddPoints(gg.XY())
return nil
case MultiPointer:
e.AddPoints(gg.Points()...)
return nil
case LineStringer:
e.AddPoints(gg.Vertices()...)
return nil
case MultiLineStringer:
for _, ls := range gg.LineStrings() {
if err := getExtent(LineString(ls), e); err != nil {
return err
}
}
return nil
case Polygoner:
for _, ls := range gg.LinearRings() {
if err := getExtent(LineString(ls), e); err != nil {
return err
}
}
return nil
case MultiPolygoner:
for _, p := range gg.Polygons() {
if err := getExtent(Polygon(p), e); err != nil {
return err
}
}
return nil
case Collectioner:
for _, child := range gg.Geometries() {
if err := getExtent(child, e); err != nil {
return err
}
}
return nil
}
}
// extractLines is a helper function for ExtractLines to avoid too many
// array copies and still provide a convenient interface to the user.
func extractLines(g Geometry, lines *[]Line) error {
switch gg := g.(type) {
default:
return ErrUnknownGeometry{g}
case Pointer:
return nil
case MultiPointer:
return nil
case LineStringer:
v := gg.Vertices()
for i := 0; i < len(v)-1; i++ {
*lines = append(*lines, Line{v[i], v[i+1]})
}
return nil
case MultiLineStringer:
for _, ls := range gg.LineStrings() {
if err := extractLines(LineString(ls), lines); err != nil {
return err
}
}
return nil
case Polygoner:
for _, v := range gg.LinearRings() {
lr := LineString(v)
if err := extractLines(lr, lines); err != nil {
return err
}
v := lr.Vertices()
if len(v) > 2 && lr.IsRing() == false {
// create a connection from last -> first if it doesn't exist
*lines = append(*lines, Line{v[len(v)-1], v[0]})
}
}
return nil
case MultiPolygoner:
for _, p := range gg.Polygons() {
if err := extractLines(Polygon(p), lines); err != nil {
return err
}
}
return nil
case Collectioner:
for _, child := range gg.Geometries() {
if err := extractLines(child, lines); err != nil {
return err
}
}
return nil
}
}
// ExtractLines extracts all linear components from a geometry (line segements).
// If the geometry contains no line segements (e.g. empty geometry or
// point), then an empty array will be returned.
//
// Duplicate lines will not be removed.
func ExtractLines(g Geometry) (lines []Line, err error) {
err = extractLines(g, &lines)
return lines, err
}
// IsNil is a helper function to check it the given interface is nil, or the
// value store in it is nil
func IsNil(a interface{}) bool {
defer func() { recover() }()
return a == nil || reflect.ValueOf(a).IsNil()
}
// RoundToPrec will round the given value to the precision value.
// The precision value should be a power of 10.
func RoundToPrec(v float64, prec int) float64 {
if v == -0.0 {
return 0.0
}
if prec == 0 {
return math.Round(v)
}
RoundingFactor := math.Pow10(prec)
return math.Round(v*RoundingFactor) / RoundingFactor
}