Google provides the fused location provider API to obtain location co-ordinates. According to the documentation, the API internally polls location data from different providers (GPS, Wifi, Cellular networks) and provides the best location. But, in High Accuracy mode, I have collected the below information. In this test GPS is always ON.

Latitude: 12.8560136
Longitude: 80.1997696
User Activity: IN VEHICLE
Speed: 21.810165 mph
Altitude: -83.0 
Accuracy: 12.0 

When I see this point in map, the points are not in the road. They are slightly away from the road. Other points with the same accuracy are plotted in the road.When I full zoom and see, some of the points are slightly away from the traveled road path.

I want the accurate information. It points must be in the road path.

I have used the Fused Location API to get the location information.

mGoogleApiClient = new GoogleApiClient.Builder(mContext)
            .addApi(LocationServices.API).addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this).build();

Share your suggestion. If I use the Location manager will it solve my problem. And also I need to consume less battery only. Fused API guarantees that it consumes only less power and more efficient.

And also Fused Location API has below issues,

  1. Not able to get the satellite count.
  2. Is always returning the FUSED provider. Not exactly gives which provider(GPS or Network) returns the Location information.
  3. Your never notified when both the provider is unavailable . It will not return any value when none of the provider is available. To check the provider availability we need to separately register with Location manager. which consumes more power.

Please help me on this. Thanks in advance.

2

There are 2 best solutions below

0
On

Location data from GPS and other providers cannot be guaranteed to lie on the road. These sensors do not have the requisite mapping context to snap raw location signals to roads. To achieve this with raw data, you can use a snap to roads API. Mapping providers like Google Maps and OSM have ways to do this:

If you are looking for an end-to-end solution that gives you location data on the road, you can also try the HyperTrack SDK for Android, which collects and processes location data to improve its accuracy. (Disclaimer: I work at HyperTrack.)

Also, to answer your other question, FusedLocationProviderApi does not expose the satellite count and provider information. To get the provider info, you can set up a GpsStatus.Listener class. This can be used in parallel to the fused provider in your app to check if the device has a GPS fix. You can use the following code snippet to set this up:

public class GPSStatusListener implements GpsStatus.Listener {

    private LocationManager locationManager;
    private boolean gpsFix;

    public GPSStatusListener(LocationManager locationManager) {
        this.locationManager = locationManager;
    }

    @Override
    public void onGpsStatusChanged(int changeType) {
        if (locationManager != null) {
            try {
                GpsStatus status = locationManager.getGpsStatus(null);

                switch (changeType) {
                    case GpsStatus.GPS_EVENT_FIRST_FIX: // Received first fix
                        gpsFix = true;
                        break;

                    case GpsStatus.GPS_EVENT_SATELLITE_STATUS: // Check if satellites are in fix
                        for (GpsSatellite sat : status.getSatellites()) {
                            if (sat.usedInFix()) {
                                gpsFix = true;
                                break;
                            } else {
                                gpsFix = false;
                            }
                        }

                        break;

                    case GpsStatus.GPS_EVENT_STARTED: // GPS turned on
                        gpsFix = false;
                        break;

                    case GpsStatus.GPS_EVENT_STOPPED: // GPS turned off
                        gpsFix = false;
                        break;

                    default:
                        gpsFix = false;
                        return;
                }
            } catch (Exception e){
                // Handle exception
            }
        }
    }

    public String getProvider() {
        if (gpsFix) {
            return "gps";
        } else {
            return "non_gps";
        }
    }
}
5
On

You won't beat the fused provider accuracy or power use with a straight up location provider.

The fused location provider reports speed as meters per second and accuracy in meters. The example point you have is accurate to 12 meters. A US lane is defined as 3.7m. With 12m of accuracy you could be off by 12/3.7=3.25 lanes in any direction. I can't say this enough. If you want accuracy you have to check the accuracy of the location.

How to get more accuracy by GPS_PROVIDER

LatLng and distance between returning incorrect values on newer phones

can't find the exact current location in android

Android Maps GPS outlier

Fused Location Provider unexpected behavior

Adjust your program to handle the accuracy of the point. For example assume the point is correct shade a circle around the point with a radius = the accuracy in the location.