blob: c459c35d91236c2450c7b7031521f9414ef926bb (
plain) (
blame)
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
|
package orb
// A Point is a Lon/Lat 2d point.
type Point [2]float64
var _ Pointer = Point{}
// GeoJSONType returns the GeoJSON type for the object.
func (p Point) GeoJSONType() string {
return "Point"
}
// Dimensions returns 0 because a point is a 0d object.
func (p Point) Dimensions() int {
return 0
}
// Bound returns a single point bound of the point.
func (p Point) Bound() Bound {
return Bound{p, p}
}
// Point returns itself so it implements the Pointer interface.
func (p Point) Point() Point {
return p
}
// Y returns the vertical coordinate of the point.
func (p Point) Y() float64 {
return p[1]
}
// X returns the horizontal coordinate of the point.
func (p Point) X() float64 {
return p[0]
}
// Lat returns the vertical, latitude coordinate of the point.
func (p Point) Lat() float64 {
return p[1]
}
// Lon returns the horizontal, longitude coordinate of the point.
func (p Point) Lon() float64 {
return p[0]
}
// Equal checks if the point represents the same point or vector.
func (p Point) Equal(point Point) bool {
return p[0] == point[0] && p[1] == point[1]
}
|