Redis进阶——GEO地理坐标&附近商户案例
import redis
# 连接Redis
r = redis.Redis(host='localhost', port=6379, db=0)
# 添加地理位置信息
r.geoadd('city:location', {'beijing': (116.405285, 39.904989), 'shanghai': (121.472644, 31.231706), 'guangzhou': (113.264365, 23.129091)})
# 获取两个地点之间的距离
distance = r.geodist('city:location', 'beijing', 'shanghai', 'km')
print(f'Beijing to Shanghai distance is: {distance} km')
# 获取指定地点的坐标
coordinates = r.geopos('city:location', 'beijing')
print(f'Coordinates of Beijing: {coordinates}')
# 获取指定范围内的地点
nearby_stores = r.georadius('city:location', 116.405285, 39.904989, 1000, 'km', withcoords='yes', withdist='yes', count=10)
print('Nearby stores within 1km of Beijing:')
for store in nearby_stores:
print(store['member'], store['dist'], store['coordinates'])
这段代码演示了如何使用Redis的GEO功能来进行地理位置信息的添加、距离计算、坐标获取以及指定范围内地点的查询。代码首先连接到Redis,然后添加了北京、上海和广州等城市的地理位置信息。接下来,它计算了北京和上海之间的距离,并获取了北京的坐标。最后,它列出了距离北京1公里以内的地点。这个案例简单直观地展示了GEO功能的应用,对开发者有很好的教育意义。
评论已关闭