mirror of https://github.com/tidwall/tile38.git
26 lines
885 B
Cheetah
26 lines
885 B
Cheetah
# geohash
|
|
|
|
Go [geohash](https://en.wikipedia.org/wiki/Geohash) library offering encoding
|
|
and decoding for string and integer geohashes.
|
|
|
|
[![go.dev Reference](https://img.shields.io/badge/doc-reference-007d9b?logo=go&style=flat-square)](https://pkg.go.dev/github.com/mmcloughlin/geohash)
|
|
[![Build status](https://img.shields.io/travis/mmcloughlin/geohash.svg?style=flat-square)](https://travis-ci.org/mmcloughlin/geohash)
|
|
[![Coverage](https://img.shields.io/coveralls/mmcloughlin/geohash.svg?style=flat-square)](https://coveralls.io/r/mmcloughlin/geohash)
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/mmcloughlin/geohash?style=flat-square)](https://goreportcard.com/report/github.com/mmcloughlin/geohash)
|
|
|
|
## Install
|
|
|
|
Fetch the package with
|
|
|
|
```
|
|
go get {{ .ImportPath }}
|
|
```
|
|
|
|
And import it into your programs with
|
|
|
|
```go
|
|
import "{{ .ImportPath }}"
|
|
```
|
|
|
|
{{ .EmitUsage }}
|