我正在开发一个使用 GPS 的 Android 应用程序。如果“新位置”(C点)离线段AB太远,我想知道是否有办法丢弃GPS位置数据。我正在使用Wikipedia 上的 Point to Line Segment 公式。
到目前为止,当我尝试使用纬度和经度坐标时,我的代码返回 NaN。
private void verifyGPSLocation(Location start, Location end, Location current){
final double errorValue = 0.0000216;
double normalLength = Math.hypot(end.getLatitude() - start.getLatitude(), end.getLongitude() - start.getLongitude());
double ret = Math.abs(((current.getLatitude() - start.getLatitude()) * (end.getLongitude() - start.getLongitude()) - (end.getLatitude() - start.getLatitude()))/normalLength );
Log.e("Coooooord", normalLength+"--"+ret);
}
这是我的第一篇文章,所以如果我没有正确或没有足够的信息,请告诉我。感谢您的帮助,我喜欢这个网站!