| 238 | |
| 239 | |
| 240 | size_t geohashEncode(Float64 longitude, Float64 latitude, uint8_t precision, char * out) |
| 241 | { |
| 242 | precision = geohashPrecision(precision); |
| 243 | return geohashEncodeImpl(longitude, latitude, precision, out); |
| 244 | } |
| 245 | |
| 246 | void geohashDecode(const char * encoded_string, size_t encoded_len, Float64 * longitude, Float64 * latitude) |
| 247 | { |
no test coverage detected