Obtain all members between the min/max of this geohash bounding box. * Populate a geoArray of GeoPoints by calling geoGetPointsInRange(). * Return the number of points added to the array. */
| 348 | * Populate a geoArray of GeoPoints by calling geoGetPointsInRange(). |
| 349 | * Return the number of points added to the array. */ |
| 350 | int membersOfGeoHashBox(robj_roptr zobj, GeoHashBits hash, geoArray *ga, GeoShape *shape, unsigned long limit) { |
| 351 | GeoHashFix52Bits min, max; |
| 352 | |
| 353 | scoresOfGeoHashBox(hash,&min,&max); |
| 354 | return geoGetPointsInRange(zobj, min, max, shape, ga, limit); |
| 355 | } |
| 356 | |
| 357 | /* Search all eight neighbors + self geohash box */ |
| 358 | int membersOfAllNeighbors(robj_roptr zobj, GeoHashRadius n, GeoShape *shape, geoArray *ga, unsigned long limit) { |
no test coverage detected