Skip to content
forked from nh7a/Geohash

Geohash library written in Swift

License

Notifications You must be signed in to change notification settings

fantasyStyle/Geohash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geohash

This is yet another Geohash library written in Swift.

Usage

if let (lat, lon) = Geohash.decode(hash: "u4pruydqqvj") {
  // lat.min == 57.649109959602356
  // lat.max == 57.649111300706863
  // lon.min == 10.407439023256302
  // lon.max == 10.407440364360809
}

let s = Geohash.encode(latitude: 57.64911063015461, longitude: 10.40743969380855, length: 10)
// s == "u4pruydqqv"

CLLocationCoordinate2D extension

if let l = CLLocationCoordinate2D(geohash: "u4pruydqqvj") {
  // l.latitude == 57.64911063015461
  // l.longitude == 10.407439693808556
}

let l = CLLocationCoordinate2D(latitude: 57.64911063015461, longitude: 10.40743969380855)
let s = l.geohash(length: 10)
// s == u4pruydqqv

Installation

Use Swift Package Manager or copy Geohash.swift into your project.

Author

Naoki Hiroshima

About

Geohash library written in Swift

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 100.0%