==================================================================== * Helpers * ==================================================================== */
| 84 | * Helpers |
| 85 | * ==================================================================== */ |
| 86 | int decodeGeohash(double bits, double *xy) { |
| 87 | GeoHashBits hash = { (uint64_t)bits, GEO_STEP_MAX }; |
| 88 | return geohashDecodeToLongLatWGS84(hash, xy); |
| 89 | } |
| 90 | |
| 91 | /* Input Argument Helper */ |
| 92 | /* Take a pointer to the latitude arg then use the next arg for longitude. |
no test coverage detected