在数据库中,我存储了大约500条记录,每条记录都有纬度和经度。
在一个活动中,我实现LocationListener
并在onLocationChanged
- 方法中,我需要显示距离此侦听器收到的位置半径半径范围内的记录。
是否有(简单)方法可以在SQL或Java中执行此操作?
答案 0 :(得分:3)
试试这个示例代码,
rs = st.executeQuery("SELECT longititude,latitude FROM location");
while (rs.next()) {
double venueLat =rs.getDouble("latitude");
double venueLng = rs.getDouble("longititude");
double latDistance = Math.toRadians(userLat - venueLat);
double lngDistance = Math.toRadians(userLng - venueLng);
double a = (Math.sin(latDistance / 2) * Math.sin(latDistance / 2)) +
(Math.cos(Math.toRadians(userLat))) *
(Math.cos(Math.toRadians(venueLat))) *
(Math.sin(lngDistance / 2)) *
(Math.sin(lngDistance / 2));
double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
double dist = 6371 * c;
if (dist<50){
/* Include your code here to display your records */
}