Skip to content

harikitech/py-geohex3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py-geohex3

Geohex v3.2 python implementation.

Build Status

Install

PyPI

pip install py-geohex3

from source

git clone https://github.com/uncovertruth/py-geohex3.git

cd py-geohex3
python setup.py install

Usage

import geohex

## retrieve geohex code from latitude / longitude
zone = geohex.get_zone_by_location(35.65858, 139.745433, 11)
print(zone.code)
# 'XM48854457273'

## retrieve location from geohex code
zone = geohex.get_zone_by_code('XM48854457273')
print(zone.lat, zone.lon)
# (35.658618718910624, 139.74540917994662)