-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgeohash_benchmark_test.go
137 lines (117 loc) · 2.95 KB
/
geohash_benchmark_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
package geohash
import (
"testing"
codefor_geohash "github.com/Codefor/geohash"
tomi_hiltunen_geohash "github.com/TomiHiltunen/geohash-golang"
broadygeohash "github.com/broady/gogeohash" //nolint:misspell
fanixk_geohash "github.com/fanixk/geohash"
mmcloughlin_geohash "github.com/mmcloughlin/geohash"
"github.com/pierrre/assert"
the42_cartconvert_geohash "github.com/the42/cartconvert/cartconvert"
)
func BenchmarkEncode(b *testing.B) {
for range b.N {
Encode(testPoint.Lat, testPoint.Lon, testPrecision)
}
}
func BenchmarkDecode(b *testing.B) {
for range b.N {
_, err := Decode(testGeohash)
if err != nil {
assert.NoError(b, err)
}
}
}
func BenchmarkNeighbors(b *testing.B) {
for range b.N {
_, err := GetNeighbors(testGeohash)
if err != nil {
assert.NoError(b, err)
}
}
}
func BenchmarkCodeforEncode(b *testing.B) {
for range b.N {
codefor_geohash.Encode(testPoint.Lat, testPoint.Lon)
}
}
func BenchmarkCodeforDecode(b *testing.B) {
for range b.N {
codefor_geohash.Decode(testGeohash)
}
}
func BenchmarkTomiHiltunenEncode(b *testing.B) {
for range b.N {
tomi_hiltunen_geohash.EncodeWithPrecision(testPoint.Lat, testPoint.Lon, testPrecision)
}
}
func BenchmarkTomiHiltunenDecode(b *testing.B) {
for range b.N {
tomi_hiltunen_geohash.Decode(testGeohash)
}
}
func BenchmarkTomiHiltunenNeighbors(b *testing.B) {
for range b.N {
tomi_hiltunen_geohash.CalculateAllAdjacent(testGeohash)
}
}
func BenchmarkBroadyEncode(b *testing.B) {
for range b.N {
broadygeohash.Encode(testPoint.Lat, testPoint.Lon)
}
}
func BenchmarkBroadyDecode(b *testing.B) {
for range b.N {
broadygeohash.Decode(testGeohash)
}
}
func BenchmarkFanixkEncode(b *testing.B) {
for range b.N {
fanixk_geohash.PrecisionEncode(testPoint.Lat, testPoint.Lon, testPrecision)
}
}
func BenchmarkFanixkDecode(b *testing.B) {
for range b.N {
fanixk_geohash.DecodeBoundingBox(testGeohash)
}
}
func BenchmarkFanixkNeighbors(b *testing.B) {
for range b.N {
fanixk_geohash.Neighbors(testGeohash)
}
}
func BenchmarkMmcloughlinEncode(b *testing.B) {
for range b.N {
mmcloughlin_geohash.EncodeWithPrecision(testPoint.Lat, testPoint.Lon, testPrecision)
}
}
func BenchmarkMmcloughlinDecode(b *testing.B) {
for range b.N {
mmcloughlin_geohash.BoundingBox(testGeohash)
}
}
func BenchmarkMmcloughlinNeighbors(b *testing.B) {
for range b.N {
fanixk_geohash.Neighbors(testGeohash)
}
}
func BenchmarkThe42CartconvertEncode(b *testing.B) {
pc := &the42_cartconvert_geohash.PolarCoord{
Latitude: testPoint.Lat,
Longitude: testPoint.Lon,
Height: 0,
El: the42_cartconvert_geohash.DefaultEllipsoid,
}
precision := byte(testPrecision)
for range b.N {
the42_cartconvert_geohash.LatLongToGeoHashBits(pc, precision)
}
}
func BenchmarkThe42CartconvertDecode(b *testing.B) {
for range b.N {
_, err := the42_cartconvert_geohash.GeoHashToLatLong(testGeohash, the42_cartconvert_geohash.DefaultEllipsoid)
if err != nil {
assert.NoError(b, err)
}
}
}