计算两个地理位置之间的距离

问题描述 投票:0回答:8

请说明一下这种情况

现在我有两个数组,有附近地点的经纬度,还有用户位置纬度和经度,现在我想计算用户位置和附近地点之间的距离,并想在列表视图中显示它们。

我知道有一种计算距离的方法

public static void distanceBetween (double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] results);

现在的问题是如何在这个方法中传递这两个具有附近纬度和经度的数组并获得距离数组。

android location distance latitude-longitude
8个回答
207
投票

http://developer.android.com/reference/android/location/Location.html

望向远方

返回此位置和之间的近似距离(以米为单位) 给定的位置。距离是使用 WGS84 椭球定义的。

或distanceBetween

计算两个位置之间的近似距离(以米为单位),以及 可选之间最短路径的初始和最终方位 他们。距离和方位使用 WGS84 椭球定义。

您可以根据纬度和经度创建一个 Location 对象:

Location locationA = new Location("point A");

locationA.setLatitude(latA);
locationA.setLongitude(lngA);

Location locationB = new Location("point B");

locationB.setLatitude(latB);
locationB.setLongitude(lngB);

float distance = locationA.distanceTo(locationB);

private double meterDistanceBetweenPoints(float lat_a, float lng_a, float lat_b, float lng_b) {
    float pk = (float) (180.f/Math.PI);

    float a1 = lat_a / pk;
    float a2 = lng_a / pk;
    float b1 = lat_b / pk;
    float b2 = lng_b / pk;

    double t1 = Math.cos(a1) * Math.cos(a2) * Math.cos(b1) * Math.cos(b2);
    double t2 = Math.cos(a1) * Math.sin(a2) * Math.cos(b1) * Math.sin(b2);
    double t3 = Math.sin(a1) * Math.sin(b1);
    double tt = Math.acos(t1 + t2 + t3);
   
    return 6366000 * tt;
}

17
投票

试试这个代码。这里我们有两个经度和纬度值,selected_location.distanceTo(near_locations) 函数返回这些地方之间的距离(以米为单位)。

Location selected_location = new Location("locationA");
            selected_location.setLatitude(17.372102);
            selected_location.setLongitude(78.484196);
Location near_locations = new Location("locationB");
            near_locations.setLatitude(17.375775);
            near_locations.setLongitude(78.469218);
double distance = selected_location.distanceTo(near_locations);

这里“distance”是locationA和locationB之间的距离(

Meters


3
投票

只有一个用户Location,所以你可以迭代附近地点的列表可以调用

distanceTo()
函数来获取距离,如果你喜欢可以存储在一个数组中。

据我了解,

distanceBetween()
用于遥远的地方,它的输出是 WGS84 椭球体。


3
投票
    private static Double _MilesToKilometers = 1.609344;
    private static Double _MilesToNautical = 0.8684;


    /// <summary>
    /// Calculates the distance between two points of latitude and longitude.
    /// Great Link - http://www.movable-type.co.uk/scripts/latlong.html
    /// </summary>
    /// <param name="coordinate1">First coordinate.</param>
    /// <param name="coordinate2">Second coordinate.</param>
    /// <param name="unitsOfLength">Sets the return value unit of length.</param>
    public static Double Distance(Coordinate coordinate1, Coordinate coordinate2, UnitsOfLength unitsOfLength)
    {

        double theta = coordinate1.getLongitude() - coordinate2.getLongitude();
        double distance = Math.sin(ToRadian(coordinate1.getLatitude())) * Math.sin(ToRadian(coordinate2.getLatitude())) +
                       Math.cos(ToRadian(coordinate1.getLatitude())) * Math.cos(ToRadian(coordinate2.getLatitude())) *
                       Math.cos(ToRadian(theta));

        distance = Math.acos(distance);
        distance = ToDegree(distance);
        distance = distance * 60 * 1.1515;

        if (unitsOfLength == UnitsOfLength.Kilometer)
            distance = distance * _MilesToKilometers;
        else if (unitsOfLength == UnitsOfLength.NauticalMiles)
            distance = distance * _MilesToNautical;

        return (distance);

    }

1
投票

distanceTo 将为您提供两个给定位置 ej target.distanceTo(destination) 之间的距离(以米为单位)。

distanceBetween 也给你距离,但它会将距离存储在 float(results[0]) 数组中。文档说如果结果的长度为 2 或更大,则初始方位存储在结果 [1] 中。如果 results 的长度为 3 或更大,则最终轴承存储在 results[2] 中

希望这有帮助

我已经使用 distanceTo 来获得从 A 点到 B 点的距离,我认为这是要走的路。


0
投票
public double distance(Double latitude, Double longitude, double e, double f) {
        double d2r = Math.PI / 180;

        double dlong = (longitude - f) * d2r;
        double dlat = (latitude - e) * d2r;
        double a = Math.pow(Math.sin(dlat / 2.0), 2) + Math.cos(e * d2r)
                * Math.cos(latitude * d2r) * Math.pow(Math.sin(dlong / 2.0), 2)
        double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
        double d = 6367 * c;
                return d;

    }

0
投票

我想自己实现这个,我最终阅读了关于大圆距离公式的维基百科页面,因为没有代码可读性足以让我用作基础。

C# 例子

    /// <summary>
    /// Calculates the distance between two locations using the Great Circle Distance algorithm
    /// <see cref="https://en.wikipedia.org/wiki/Great-circle_distance"/>
    /// </summary>
    /// <param name="first"></param>
    /// <param name="second"></param>
    /// <returns></returns>
    private static double DistanceBetween(GeoLocation first, GeoLocation second)
    {
        double longitudeDifferenceInRadians = Math.Abs(ToRadians(first.Longitude) - ToRadians(second.Longitude));

        double centralAngleBetweenLocationsInRadians = Math.Acos(
            Math.Sin(ToRadians(first.Latitude)) * Math.Sin(ToRadians(second.Latitude)) +
            Math.Cos(ToRadians(first.Latitude)) * Math.Cos(ToRadians(second.Latitude)) *
            Math.Cos(longitudeDifferenceInRadians));

        const double earthRadiusInMeters = 6357 * 1000;

        return earthRadiusInMeters * centralAngleBetweenLocationsInRadians;
    }

    private static double ToRadians(double degrees)
    {
        return degrees * Math.PI / 180;
    }

0
投票

只需使用

.distanceTo
方法。 例如:

private fun getDistance(locationA:Location, locationB:Location){

    val distance = locationA.distanceTo(locationB)
}
© www.soinside.com 2019 - 2024. All rights reserved.