summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjeev Gupta <ghane0@gmail.com>2015-04-07 16:12:06 +0800
committerEric S. Raymond <esr@thyrsus.com>2015-04-07 05:26:01 -0400
commited612318a2b3b0101eec4e6914be589819d3c429 (patch)
treed0b26e58745eb7a9d578dde4ac8b88aba619f4ea
parent32725eddc51b648970d407bf020486dfd3cacee3 (diff)
downloadgpsd-ed612318a2b3b0101eec4e6914be589819d3c429.tar.gz
Update PRNMAX to include GLONASS in xgps et al
-rwxr-xr-xxgps2
-rwxr-xr-xxgpsspeed2
2 files changed, 2 insertions, 2 deletions
diff --git a/xgps b/xgps
index 78e667f1..63118109 100755
--- a/xgps
+++ b/xgps
@@ -88,7 +88,7 @@ class SkyView(gtk.DrawingArea):
# See <http://faq.pygtk.org/index.py?req=show&file=faq18.008.htp>
HORIZON_PAD = 40 # How much whitespace to leave around horizon
SAT_RADIUS = 5 # Diameter of satellite circle
- GPS_PRNMAX = 64 # Above this number are SBAS satellites
+ GPS_PRNMAX = 96 # Above this number are SBAS satellites
def __init__(self):
gtk.DrawingArea.__init__(self)
diff --git a/xgpsspeed b/xgpsspeed
index 6f10239f..d553d2c8 100755
--- a/xgpsspeed
+++ b/xgpsspeed
@@ -220,7 +220,7 @@ class LandSpeedometer(Speedometer):
class NauticalSpeedometer(Speedometer):
HEADING_SAT_GAP = 0.8
- GPS_PRNMAX = 64 # Above this number are SBAS satellites
+ GPS_PRNMAX = 96 # Above this number are SBAS satellites
SAT_SIZE = 10 # radius of the satellite circle in skyview
def __init__(self, speed_unit=None, maxspeed=100):