├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── geohash.c ├── geohash.h └── test-geohash.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | *.sw[op] 4 | *_test 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/README.md -------------------------------------------------------------------------------- /geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/geohash.c -------------------------------------------------------------------------------- /geohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/geohash.h -------------------------------------------------------------------------------- /test-geohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinqiwen/geohash-int/HEAD/test-geohash.c --------------------------------------------------------------------------------