Redis源代码中“area”和“BoundingBox”之间的区别是什么

时间:2016-09-13 02:06:47

标签: redis geolocation geometry geocoding geospatial

http://download.redis.io/redis-stable/deps/geohash-int/geohash_helper.c 从上面的URL,我们知道有两个概念,一个是geohashBoundingBox,另一个是区域,我的问题是它们之间的区别是什么以及为什么我们需要它们? 也为什么句子“geohashGetCoordRange(& long_range,& lat_range);”被叫两次?

GeoHashRadius geohashGetAreasByRadius(double longitude, double latitude,    double radius_meters) {
GeoHashRange long_range, lat_range;
GeoHashRadius radius = { { 0 } };
GeoHashBits hash = { 0 };
GeoHashNeighbors neighbors = { { 0 } };
GeoHashArea area = { { 0 } };
double min_lon, max_lon, min_lat, max_lat;
double bounds[4];
int steps;

geohashBoundingBox(longitude, latitude, radius_meters, bounds);
min_lon = bounds[0];
min_lat = bounds[1];
max_lon = bounds[2];
max_lat = bounds[3];

steps = geohashEstimateStepsByRadius(radius_meters,latitude);

geohashGetCoordRange(&long_range, &lat_range);
geohashEncode(&long_range, &lat_range, longitude, latitude, steps, &hash);
geohashNeighbors(&hash, &neighbors);
geohashGetCoordRange(&long_range, &lat_range);
geohashDecode(long_range, lat_range, hash, &area);

if (area.latitude.min < min_lat) {
    GZERO(neighbors.south);
    GZERO(neighbors.south_west);
    GZERO(neighbors.south_east);
}
if (area.latitude.max > max_lat) {
    GZERO(neighbors.north);
    GZERO(neighbors.north_east);
    GZERO(neighbors.north_west);
}
if (area.longitude.min < min_lon) {
    GZERO(neighbors.west);
    GZERO(neighbors.south_west);
    GZERO(neighbors.north_west);
}
if (area.longitude.max > max_lon) {
    GZERO(neighbors.east);
    GZERO(neighbors.south_east);
    GZERO(neighbors.north_east);
}
radius.hash = hash;
radius.neighbors = neighbors;
radius.area = area;
return radius;

}

1 个答案:

答案 0 :(得分:0)

通常,绑定框是包含对象的最小矩形框。我不能在redis中谈论GeoHashArea的确切功能,但是因为你暗示他们有类似的目的,如果它们都代表一个地理区域,那么GeoHashArea肯定会是一个区域比一个简单的矩形更详细的多边形表示像geohashBoundingBox。

对于你的第二个问题,大概是因为变量long_rangelat_range是通过引用传递的,所以有可能

geohashEncode(&long_range, &lat_range, longitude, latitude, steps, &hash);

修改它们的值,因此在不同的值上再次调用函数geohashGetCoordRange