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?
feedback
|
|
Use the
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. | |||
|
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. | ||||
|
feedback
|