parent method

GeoHash parent()

Returns a new Geohash for the parent of this one.

Implementation

GeoHash parent() {
  return GeoHash(_geohash.substring(0, _geohash.length - 1));
}