increase the static dis limit to 0.3

This commit is contained in:
zhongchao
2022-08-25 18:17:30 +08:00
parent 71b793db4c
commit b027ac2e98

View File

@@ -193,8 +193,8 @@ public class TrackObj {
return false;
}
double dis = CoordinateUtils.calculateLineDistance(center[0], center[1], cacheData.getLongitude(), cacheData.getLatitude());
Log.d("emArrow-Track", "uuid : " + cacheData.getUuid() + " , list size : " + objQueueList.size() + " , dis : " + dis);
return dis < 0.2;
// Log.d("emArrow-Track", "uuid : " + cacheData.getUuid() + " , list size : " + objQueueList.size() + " , dis : " + dis);
return dis < 0.3;
}
public boolean isFourWheelType() {