tile38/vendor/github.com/mmcloughlin/geohash/README.tmpl

26 lines
885 B
Cheetah
Raw Normal View History

# geohash
Go [geohash](https://en.wikipedia.org/wiki/Geohash) library offering encoding
and decoding for string and integer geohashes.
2020-09-23 02:43:58 +03:00
[![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 }}