| 157 | } |
| 158 | |
| 159 | int geohashEncodeWGS84(double longitude, double latitude, uint8_t step, |
| 160 | GeoHashBits *hash) { |
| 161 | return geohashEncodeType(longitude, latitude, step, hash); |
| 162 | } |
| 163 | |
| 164 | int geohashDecode(const GeoHashRange long_range, const GeoHashRange lat_range, |
| 165 | const GeoHashBits hash, GeoHashArea *area) { |
no test coverage detected