从坐标数组计算平均速度

时间:2018-03-19 16:22:38

标签: android google-maps android-gps

     //Global var
     ArrayList<LatLng> points = new ArrayList<>(); 

// --------------------------------------------- -----------------------------------------

public void onLocationChanged(final Location location) {
    //Adds a marker on the current position found in LatLng
    myCoordinates = new LatLng(location.getLatitude(), location.getLongitude());

    //Sets the marker to the position of LatLng and zooms the camera in on the location
    LocationMarker.setPosition(myCoordinates);
    mMap.moveCamera(CameraUpdateFactory.newLatLng(myCoordinates));
    float zoomLevel = 12.0f;
    mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(myCoordinates, zoomLevel));

    //Adds marker on each location update
    points.add(myCoordinates);

    mMap.addMarker(new MarkerOptions().position(points.get(0))
            .title("Starting Location")
            .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_YELLOW)));

    //Draws a polyline between the location updates stored in points.
    mMap.addPolyline(new PolylineOptions()
            .addAll(points)
            .width(5)
            .color(Color.RED));

    //gets speed from Location and converts it to Km/h
    speedText.setText(String.format("%.0f - Km/h", location.getSpeed() * 3.6));

}

这是我的onLocationChanged函数。这会在每次更新时将坐标存储到我的数组中。它还会在每次更新时绘制和使用折线,以km / h计算我的速度,并在我的阵列位置[0]添加一个标记,这是我的起始位置。这一切都很好,非常适合我需要做的事情。

有可能从中计算平均速度吗?

2 个答案:

答案 0 :(得分:1)

您只需要创建另一个全局列表并插入getSpeed();

的值
speedArray.add(Double.parseDouble(location.getSpeed()));

创建一个在onLocationChanged结束时调用的函数,并且每次计算平均速度;

答案 1 :(得分:0)

是的,确实如此。但是你需要记录更多的数据,例如:

  • 以前的位置坐标。
  • 位置样本的当前时间。

使用以上信息,您可以使用以下公式: speed = distance / time

distancecurrentGPSPoint - previousGPSPointtime = currentTime - previousTime

这将为您提供两个位置之间的平均速度。如果您需要总体平均值,则可以保存所有计算的速度并计算平均值。或者只是存储初始位置并始终计算从初始位置到当前位置的速度。