From 391b451093710631902e4c8e3a3514d9afe45dff Mon Sep 17 00:00:00 2001 From: "Michael Hirsch, Ph.D" Date: Tue, 3 Sep 2019 13:19:40 -0400 Subject: [PATCH] obs2: max per-system SV up to 36 for Galileo (thanks @nmayorov #47) --- README.md | 3 +-- georinex/obs2.py | 11 ++++++++--- setup.cfg | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f2debec..cd22ad3 100644 --- a/README.md +++ b/README.md @@ -67,10 +67,9 @@ python -m pytest ``` ``` -155 passed, 1 skipped +158 passed, 1 skipped ``` - ## Usage The simplest command-line use is through the top-level `ReadRinex` script. diff --git a/georinex/obs2.py b/georinex/obs2.py index c37c7df..2d3cdd4 100644 --- a/georinex/obs2.py +++ b/georinex/obs2.py @@ -84,9 +84,14 @@ def rinexsystem2(fn: Union[TextIO, Path], interval = _check_time_interval(interval) # %% allocation - # these values are not perfect, but seem reasonable. - # Let us know if you needed to change them. - Nsvsys = 35 # Beidou is 35 max, the current maximum GNSS SV count + """ + Nsvsys may need updating as GNSS systems grow. + Let us know if you needed to change them. + + Beidou is 35 max + Galileo is 36 max + """ + Nsvsys = 36 hdr = obsheader2(fn, useindicators, meas) diff --git a/setup.cfg b/setup.cfg index 39cfb3d..5e9cc6d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = georinex -version = 1.12.1 +version = 1.12.2 author = Michael Hirsch, Ph.D. author_email = scivision@users.noreply.github.com description = Python RINEX 2/3 NAV/OBS reader with speed and simplicity.