The pure-Go github.com/uber/h3-go/v4/x/h3go package is useful for applications that cannot depend on cgo.
For example:
package main
import (
"fmt"
"log"
"github.com/uber/h3-go/v4/x/h3go"
)
func main() {
cell, err := h3go.LatLngToCell(
h3go.LatLng{Lat: 37.7759, Lng: -122.4179},
9,
)
if err != nil {
log.Fatal(err)
}
fmt.Println(cell)
}
However, the latest tag currently does not contain this package:
$ go get github.com/uber/h3-go/v4/x/h3go@v4.5.0
go: module github.com/uber/h3-go/v4@v4.5.0 found, but does not contain package github.com/uber/h3-go/v4/x/h3go
Using x/h3go therefore requires pinning an unreleased commit through a pseudo-version.
Could you publish a new v4 release containing x/h3go?
The pure-Go
github.com/uber/h3-go/v4/x/h3gopackage is useful for applications that cannot depend on cgo.For example:
However, the latest tag currently does not contain this package:
Using
x/h3gotherefore requires pinning an unreleased commit through a pseudo-version.Could you publish a new
v4release containingx/h3go?