Package geohash is a simple implementation of the Public Domain Geohash algorithm.
It represents the hashes using boxes which contain the resulting hashes and can reverse the box,
using the geohash and the precision to recreate it.
type Box struct {
// contains filtered or unexported fields
}
Box represents a coordinate box. It knows it's width and height, and can figure out it's neighbors.
It implements the Stringer interface, printing out the geohash value.