Skip to content

Commit

Permalink
Merge 590026c into 95ebc02
Browse files Browse the repository at this point in the history
  • Loading branch information
jogly committed Jan 15, 2020
2 parents 95ebc02 + 590026c commit 2dc0e4f
Show file tree
Hide file tree
Showing 44 changed files with 9,195 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -14,6 +14,7 @@ fixes via patches with patch version bumps.
* `MaxResolution`
* `NumIcosaFaces`
* `NumBaseCells`
* Support for GOMODULES (#24)

## 3.0.1

Expand Down
5 changes: 5 additions & 0 deletions go.mod
@@ -0,0 +1,5 @@
module github.com/uber/h3-go

go 1.13

require github.com/stretchr/testify v1.4.0
11 changes: 11 additions & 0 deletions go.sum
@@ -0,0 +1,11 @@
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
59 changes: 59 additions & 0 deletions v3/bench_test.go
@@ -0,0 +1,59 @@
package h3

import (
"testing"
)

// buckets for preventing compiler optimizing out calls
var (
geo = GeoCoord{
Latitude: 37,
Longitude: -122,
}
h3idx = FromGeo(geo, 15)
h3addr = ToString(h3idx)
geoBndry GeoBoundary
h3idxs []H3Index
)

func BenchmarkToString(b *testing.B) {
for n := 0; n < b.N; n++ {
h3addr = ToString(h3idx)
}
}

func BenchmarkFromString(b *testing.B) {
for n := 0; n < b.N; n++ {
h3idx = FromString("850dab63fffffff")
}
}

func BenchmarkToGeoRes15(b *testing.B) {
for n := 0; n < b.N; n++ {
geo = ToGeo(h3idx)
}
}

func BenchmarkFromGeoRes15(b *testing.B) {
for n := 0; n < b.N; n++ {
h3idx = FromGeo(geo, 15)
}
}

func BenchmarkToGeoBndryRes15(b *testing.B) {
for n := 0; n < b.N; n++ {
geoBndry = ToGeoBoundary(h3idx)
}
}

func BenchmarkHexRange(b *testing.B) {
for n := 0; n < b.N; n++ {
h3idxs, _ = HexRange(h3idx, 10)
}
}

func BenchmarkPolyfill(b *testing.B) {
for n := 0; n < b.N; n++ {
h3idxs = Polyfill(validGeopolygonWithHoles, 6)
}
}
16 changes: 16 additions & 0 deletions v3/example_test.go
@@ -0,0 +1,16 @@
package h3

import (
"fmt"
)

func ExampleFromGeo() {
geo := GeoCoord{
Latitude: 37.775938728915946,
Longitude: -122.41795063018799,
}
resolution := 9
fmt.Printf("%#x\n", FromGeo(geo, resolution))
// Output:
// 0x8928308280fffff
}
5 changes: 5 additions & 0 deletions v3/go.mod
@@ -0,0 +1,5 @@
module github.com/uber/h3-go/v3

go 1.13

require github.com/stretchr/testify v1.4.0
10 changes: 10 additions & 0 deletions v3/go.sum
@@ -0,0 +1,10 @@
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 comments on commit 2dc0e4f

Please sign in to comment.