I got the GPS_Location:

double lo=gps_loc.getLongitude();
double la=gps_loc.getLatitude();

I got the Horizontal_Accuracy:

int horiAcc=(int)(gps_loc.getAccuracy());

I got the HDOP:

int hd= (int) (horiAcc/5);

But I can't got the number of satellites.

How can I get the number of satellites have been used in my GPS localisation?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Look at the GpsStatus Class it has a method called getMaxSatellites()

if you need further looking into the GPS Satellite Data you can iterate over the List of Satellites with getSatellites()

see: http://developer.android.com/reference/android/location/GpsStatus.html#getMaxSatellites%28%29

link|improve this answer
feedback

Hey if you share some code then its highly appreciated . I do some code but i am not getting proper output and it hangs my application also.

I want to count no. of satellites have been use in my gps fix and i have shown my code below :

@Override
public void onGpsStatusChanged(int event)
{
    //Log.e("Gps_Status", "From on gps status changed");

    if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS) 
    {
        GpsStatus status = m_locationManager._myLocationManager.getGpsStatus(null);
        Iterable<GpsSatellite> sats = status.getSatellites();

        // Check number of satellites in list to determine fix state
        NO_OF_SATELLITE=0;

        while (sats.iterator().hasNext())
        {
            GpsSatellite gpsSatellite=(GpsSatellite)sats.iterator().next();

            if(gpsSatellite.usedInFix())
            {
                NO_OF_SATELLITE++;

                Log.v("Used In FIx", String.valueOf(NO_OF_SATELLITE));

                try 
                {
                    File root=new File(PATH, "Log");
                    if (!root.exists()) {
                        root.mkdirs();
                    }

                    File note=new File(root, "log.txt");
                    FileWriter writer=new FileWriter(note);
                    //writer.append("Count: "+ String.valueOf(NO_OF_SATELLITE) + '\n');

                    BufferedWriter buf=new BufferedWriter(writer);
                    buf.write("Count: "+ String.valueOf(NO_OF_SATELLITE) + '\n');

                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

            }

        }

        Toast.makeText(this, "Used In FIx :  "+String.valueOf(NO_OF_SATELLITE), Toast.LENGTH_SHORT).show();

    }
link|improve this answer
GpsStatus gpsStatus = lManager.getGpsStatus(null); int st=gpsStatus.getMaxSatellites(); satellites=satellites+st; – haythem souissi Mar 30 at 8:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.