Skip to content

jazztunes/geohash-plsql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

geohash-plsql

Oracle PL/SQL GeoHash Encoder Implementation

Overview

An implementation of the GeoHash encoder for Oracle PL/SQL based on the the work of

Usage

GEOHASH_ENCODE( LATITUDE, LONGITUDE, PRECISION )

Usage

Parameters

  • LATITUDE : Floating point
  • LONGITUDE : Floating point
  • PRECISION : Optional integer (default: 5)

Return Value

A varchar2 having a length of the specified precision.

Example

SQL> select GEOHASH_ENCODE( 32.775833, -96.796667 ) GEOHASH from dual;
GEOHASH
---------
9vg4m

About

Oracle PL/SQL GeoHash Encoder Implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages