I want to display a signal bar for a GPS device using .NET CF. I'm able to read NMEA data and get the SNR signals. But they are a number of satellites with some active and some inactive with various SNRs. I thought about getting average of total SNR but it won't give a accurate value as three strong signal satellite is enough for GPS fix and with another 5 satellites with bad SNR can mess up the signal bar calculation. How am I gonna calculate GPS signal in percentages in a proper way?

link|improve this question

1  
Take the average of the X strongest signals? – Phil Gan Jul 1 '10 at 15:34
is it a standard way or just your idea? – VOX Jul 1 '10 at 17:18
feedback

2 Answers

up vote 2 down vote accepted

Use the GSA NMEA sentance to get the Dilution of Precision:

This sentence provides details on the nature of the fix. It includes the numbers of the satellites being used in the current solution and the DOP. DOP (dilution of precision) is an indication of the effect of satellite geometry on the accuracy of the fix. It is a unitless number where smaller is better. For 3D fixes using 4 satellites a 1.0 would be considered to be a perfect number, however for overdetermined solutions it is possible to see numbers below 1.0.

From GPS info.

A DOP value of 1 is perfect, while a DOP value of 20 or greater is poor. You typically want a DOP of less than 10.

link|improve this answer
that's great info. Thanks @fmark. – VOX Jul 13 '10 at 10:33
feedback

No, don“t use the DOP, use the HDOP (horicontal dilution of precision) value. The DOP does includes the altitude (height above elipsoid/sea level). Since the altitude is not very accurate, GPS is mostly used for horicontal (lat, lon) positions. Therefore the hdop is more useful. You typically will use hdop < 5 values.

Another way: The answer above, calculates the quality related to a specific location, and time. If you really want the signal strength, e.g for comparing the quality of the installation of the GPS receiver inside a vehicle, or the quality of the antenna: Then you should average the Signal to Noise ratio of all used! satellites. You will find this in the GSV sentences. As far as I know, there is no standard way to compute the overall signal strength. But I would not use this to show bars on a display, its more for analysis and monitoring.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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