由于在工作中使用到了solr的空间搜索功能,在此记录过程。
-
需要定义一个坐标形式的字段
修改schema.xml文件
添加fieldType
<fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
添加field
<field name="latlon" type="location" indexed="true" stored="true"/>
2.修改data-config.xml
如,s_latitude_s 字段为经度,s_longitude_s 字段为维度
在data-config.xml加入如下脚本
<script><![CDATA[ function f1(row){ var lat_coordinate = row.get("s_latitude_s"); var log_coordinate = row.get("s_longitude_s"); if(!isNaN(lat_coordinate) && !isNaN(log_coordinate) && lat_coordinate*1 >= -90 && lat_coordinate*1 <= 90 ) { var store_lat_lon = lat_coordinate + "," + log_coordinate; row.put("latlon",store_lat_lon); }else{ row.put("latlon","0,0"); } return row; } ]]></script>
在entity中引用该脚本 transformer="script:f1"
3.重启solr
4.查询示例
参数 |
描述 | 示例 |
d | 范围,单位:千米 | d=5 |
pt |
搜索过滤的中心点,纬度,经度坐标点 |
pt=29.5454,106.5305 |
sfield | 空间搜索类型的字段(eg: solr.LatLonType) | sfield=latlon |
fq | 设置查询过滤器 | fq={!geofilt} |
sort | 根据字段或者函数排序 | sort=geodist() asc |
geofilt 函数: 使结果集约束在到中心点位置的最大距离(km)圆形区域内。
geodist 函数: 计算两点之间的距离。
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于