| 238 | } |
| 239 | |
| 240 | int geohashGetDistanceIfInRadiusWGS84(double x1, double y1, double x2, |
| 241 | double y2, double radius, |
| 242 | double *distance) { |
| 243 | return geohashGetDistanceIfInRadius(x1, y1, x2, y2, radius, distance); |
| 244 | } |
| 245 | |
| 246 | /* Judge whether a point is in the axis-aligned rectangle, when the distance |
| 247 | * between a searched point and the center point is less than or equal to |
no test coverage detected