fnull/geohash

1.0 2018-07-17 11:08 UTC

This package is not auto-updated.

Last update: 2025-06-27 11:11:35 UTC


README

Build Status

Simple php geohash class

Install

You may install Geohash with Composer (recommended) or manually.

require: {
    "geohash/geohash": "dev-master"
}

Usage

Encode a coordinates:

<?php
require "vendor/autoload.php";

use Geohash\Geohash;

echo Geohash::encode(31.283131, 121.500831); // wtw3uyfjqw61

Decode a geohash:

<?php
require "vendor/autoload.php";

use Geohash\Geohash;

list($lat, $lng) = Geohash::decode('wtw3uyfjqw61');
echo $lat, ', ', $lng; // 31.283131, 121.500831