Skip to content

Commit

Permalink
obs2: max per-system SV up to 36 for Galileo (thanks @nmayorov #47)
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Sep 3, 2019
1 parent 3d4f48d commit 391b451
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
11 changes: 8 additions & 3 deletions georinex/obs2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = georinex
version = 1.12.1
version = 1.12.2
author = Michael Hirsch, Ph.D.
author_email = [email protected]
description = Python RINEX 2/3 NAV/OBS reader with speed and simplicity.
Expand Down

0 comments on commit 391b451

Please sign in to comment.