我是靠谱客的博主 饱满学姐,最近开发中收集的这篇文章主要介绍elasticsearch 在python代码中实现地理位置范围查询流程,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、建立索引结构,知名location 字段为geo_point

es = Elasticsearch()

data={"mappings":

{"re": {

"properties": {

"location": {

"type": "geo_point"}

}

}

}

}

es.indices.create(index='my_index', body=data, ignore=409)

2、添加数据必须有 location字段为{“lat”:22,"lon":102}形式

es.create(index='my_index', doc_type='re', id=i, ignore=409, body={"name":"xxx","location":{"lat":44.277,"lon":-73.989}})

3、查询;

body = {"query": {

"bool": {

"filter": {

"geo_bounding_box": {

"location": {

"top_left": {

"lat": 53.55,

"lon": 73.66

},

"bottom_right": {

"lat": 3.86,

"lon": 135.230

}

}

}

}

}

}

}

ress=es.search(index='my_index', scroll='1m', body=body,size=100)

 

完成

最后

以上就是饱满学姐为你收集整理的elasticsearch 在python代码中实现地理位置范围查询流程的全部内容,希望文章能够帮你解决elasticsearch 在python代码中实现地理位置范围查询流程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部